Last active
December 26, 2015 05:24
-
-
Save LearnByCode/fa63bcadce002dbe7084 to your computer and use it in GitHub Desktop.
First Java Program
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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