// This is a comment... speaking of comments... this is your first program!
// You can write anything you want here and the compiler will ignore it.
// Blah... blah... blah!!!
/*
* This is a multiline comment... don't forget to close the comment!
*/
public class MyFirstJavaProgram
{
public static void main(String[] args)
{
System.out.println("Take the red pill Neo!");
}
}