Skip to content

Instantly share code, notes, and snippets.

View mahmon's full-sized avatar
👍
Developing

Wayne S Murphy-Jerrett mahmon

👍
Developing
  • South West UK
View GitHub Profile
@mahmon
mahmon / TimeWaster.java
Last active June 10, 2019 13:32
Another hello world variant
public class TimeWaster {
public static void main (String[] args) {
System.out.println("What a waste of time!");
}
}
@mahmon
mahmon / MessagePrinter.java
Last active June 10, 2019 13:32
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);
}
}