public class HelloWorld {
public static void main (String args[]){
System.out.println ("Hello ");
http://www.google.com
System.out.println ("World!");
}
}
The above code is just compiling and executing fine. Why the compiler is not reporting any error?