Skip to content

Instantly share code, notes, and snippets.

@obcode
Created January 21, 2016 16:38
Show Gist options
  • Select an option

  • Save obcode/cf65c4f3c464f7de886b to your computer and use it in GitHub Desktop.

Select an option

Save obcode/cf65c4f3c464f7de886b to your computer and use it in GitHub Desktop.
Konstruktor für Blatt 7
ChristmasTree(int height) {
if (height < 3) {
throw new RuntimeException();
}
this.height = height;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment