Skip to content

Instantly share code, notes, and snippets.

@z-a-ki3
Created April 29, 2015 07:38
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 z-a-ki3/b0fd553264fb3aab1abc to your computer and use it in GitHub Desktop.
Save z-a-ki3/b0fd553264fb3aab1abc to your computer and use it in GitHub Desktop.
public class Test {
public void main(String[] args) {
sayHello();
System.out.print("main ");
}
void sayHello() {
System.out.print("hello ");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment