Skip to content

Instantly share code, notes, and snippets.

@conquerex
Created September 22, 2016 10:50
Show Gist options
  • Save conquerex/a91aaf154fbe03761c4045d475d4628d to your computer and use it in GitHub Desktop.
Save conquerex/a91aaf154fbe03761c4045d475d4628d to your computer and use it in GitHub Desktop.
import city.City;
import city.Seoul;
import city.gu.Gangnam;
public class MainExtends2 {
public static void main(String[] args) {
City gangnam = new Gangnam();
City seoul = new Seoul();
seoul.collectTax(1000);
gangnam.collectTax(1000);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment