Skip to content

Instantly share code, notes, and snippets.

@Chiamaka
Created September 24, 2015 17:16
Show Gist options
  • Save Chiamaka/f5a3b9217ea2cfb52ab7 to your computer and use it in GitHub Desktop.
Save Chiamaka/f5a3b9217ea2cfb52ab7 to your computer and use it in GitHub Desktop.
public class Vehicle{
public String color;
public int wheels;
public int engine;
public void move();
public void brake();
public void stop();
}
public class LandVehicle extends Vehicle{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment