Skip to content

Instantly share code, notes, and snippets.

@orb
Created June 16, 2014 16:02
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 orb/319bd6bf15120af18f61 to your computer and use it in GitHub Desktop.
Save orb/319bd6bf15120af18f61 to your computer and use it in GitHub Desktop.
public class Marker {
public String color;
public String tip;
public Marker(String color, String tip) {
this.color = color;
this.tip = tip;
}
public void write() {
System.out.println("Writing with a " + this.tip +
" " + this.color + " marker");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment