Skip to content

Instantly share code, notes, and snippets.

@mahmon
Last active June 10, 2019 13:32
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 mahmon/440fbd39dadc3088d0324856467cdcd9 to your computer and use it in GitHub Desktop.
Save mahmon/440fbd39dadc3088d0324856467cdcd9 to your computer and use it in GitHub Desktop.
Slight variation on standard 'Hello World' in Java
public class MessagePrinter {
private static String messageToPrint = "Hello World!";
public static void main (String[] args) {
System.out.println(messageToPrint);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment