Skip to content

Instantly share code, notes, and snippets.

@rudrakshbhati
Created August 31, 2019 13:45
Show Gist options
  • Save rudrakshbhati/d439bd813cc368b04eef247c19ca6a29 to your computer and use it in GitHub Desktop.
Save rudrakshbhati/d439bd813cc368b04eef247c19ca6a29 to your computer and use it in GitHub Desktop.
public class Bike implements Vehicle {
public void drive() {
System.out.println("I am in Bike implementation of vehicle");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment