Skip to content

Instantly share code, notes, and snippets.

@john-nash-rs
Created May 5, 2019 15:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save john-nash-rs/cd26f7175ab5a3a6d4108ad10d7ff60b to your computer and use it in GitHub Desktop.
Save john-nash-rs/cd26f7175ab5a3a6d4108ad10d7ff60b to your computer and use it in GitHub Desktop.
public class GunShop{
public static void main(String args[]){
Gun scarl = new Scarl();
scarl = new Compensator(scarl);
scarl = new Supressor(scarl);
scarl = new 4xZoom(scarl);
System.out.println("Price is "+scarl.getCost());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment