Skip to content

Instantly share code, notes, and snippets.

@LearnByCode
Last active December 26, 2015 05:24
Show Gist options
  • Save LearnByCode/fa63bcadce002dbe7084 to your computer and use it in GitHub Desktop.
Save LearnByCode/fa63bcadce002dbe7084 to your computer and use it in GitHub Desktop.
First Java Program
public class HelloWorld
{
public static void main( String[] args )
{
System.out.println( "Hello, World!" );
System.out.println("Today is July 19, 2015. I am alive!");
System.out.println("My name is Alton.");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment