Skip to content

Instantly share code, notes, and snippets.

@gssachdeva
Created October 28, 2018 04:40
Show Gist options
  • Save gssachdeva/f004abef9d99a07ab9c6d918c673c732 to your computer and use it in GitHub Desktop.
Save gssachdeva/f004abef9d99a07ab9c6d918c673c732 to your computer and use it in GitHub Desktop.
// Implementation of Ferrari Car
public class Ferrari implements Car {
@Override
public void start() {
System.out.println("Inside Ferrari::start method");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment