Skip to content

Instantly share code, notes, and snippets.

@jabrena
Created September 25, 2017 17:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jabrena/d3d236c9fe36eee2c4112212616c3170 to your computer and use it in GitHub Desktop.
Save jabrena/d3d236c9fe36eee2c4112212616c3170 to your computer and use it in GitHub Desktop.
Exercise1
/**
Program description
*/
public class HelloWorld {
public static void main(String[] args) {
//Message
String message = "Hello, World";
// Prints "Hello, World" to the terminal window.
System.out.println(message);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment