Skip to content

Instantly share code, notes, and snippets.

@JosephRedfern
Created May 8, 2012 21:31
Show Gist options
  • Select an option

  • Save JosephRedfern/2639500 to your computer and use it in GitHub Desktop.

Select an option

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
Copy Markdown

Needs more Object Oritenteering.

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