Skip to content

Instantly share code, notes, and snippets.

@BetterProgramming
Created May 13, 2019 13:38
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/b3969c6a4688a3dee07a4fd97ccdd010 to your computer and use it in GitHub Desktop.
Save BetterProgramming/b3969c6a4688a3dee07a4fd97ccdd010 to your computer and use it in GitHub Desktop.
public abstract class Beverage {
String desc = "unknown beverage";
public String getDescription() {
return desc;
}
public abstract int cost();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment