Preview:
public class Wrangler {

  int odometer = 0;
boolean carDoors = true; 

public void drive( int miles) {
  System.out.println("car drove " + miles + " miles");
  odometer = odometer + miles;

}

public void takeOffDoors() {
  carDoors = false;
  System.out.println("Doors are taken off");

}

public void putBackDoors() {
  carDoors = true;
  System.out.println("Doors are back");

}
}
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter