Skip to content

Instantly share code, notes, and snippets.

@dhust
Last active May 20, 2017 00:39
Show Gist options
  • Save dhust/6144627 to your computer and use it in GitHub Desktop.
Save dhust/6144627 to your computer and use it in GitHub Desktop.
An example of a basic method
public static void main(String[] args) {
// Three "calls" to the method 'printStuff'
printStuff();
printStuff();
printStuff();
}
// This code only runs if it's "called"
public static void printStuff () {
System.out.println("Hello earth");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment