If you have a program like this:
public class ABC
{
public static void main(String args[])
{
System.out.println("1");
http://example.com
System.out.println("2");
}
}
Note the URL http://example.com
written in between the two output statements.
Why does the program compile without any errors?