Skip to content

Instantly share code, notes, and snippets.

@andriybuday
Created June 11, 2018 20:11
Show Gist options
  • Save andriybuday/a5cf2feac3ac83d969817aa7fc130b1b to your computer and use it in GitHub Desktop.
Save andriybuday/a5cf2feac3ac83d969817aa7fc130b1b to your computer and use it in GitHub Desktop.
public class Car {
protected String BrandName;
public void Go() {
System.out.println("I'm " + BrandName + " and I'm on my way...");
}
}
public class MercedesCar extends Car {
public MercedesCar() {
BrandName = "Mercedes";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment