Skip to content

Instantly share code, notes, and snippets.

@JosephRedfern
Created May 8, 2012 21:31
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 JosephRedfern/2639500 to your computer and use it in GitHub Desktop.
Save JosephRedfern/2639500 to your computer and use it in GitHub Desktop.
public class JoesJavaCoursework{
public static void main(String[] args){
new JoesJavaCoursework();
}
public JoesJavaCoursework(){
this.lolbox();
}
public void lolbox(){
System.out.println("lolbox");
this.lolbox();
}
}
@tgvashworth
Copy link

Needs more Object Oritenteering.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment