Skip to content

Instantly share code, notes, and snippets.

@BetterProgramming
Created May 13, 2019 13:39
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 BetterProgramming/5dcd45fd95ad8d98fcaf1cfcc7618876 to your computer and use it in GitHub Desktop.
Save BetterProgramming/5dcd45fd95ad8d98fcaf1cfcc7618876 to your computer and use it in GitHub Desktop.
public class DarkRoast extends Beverage {
public DarkRoast() {
desc = "Dark roast";
}
@Override
public int cost() {
return 20;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment