Skip to content

Instantly share code, notes, and snippets.

@esirK
Last active July 13, 2018 02:08
Show Gist options
  • Save esirK/746903657e7b4ac2436dc7dbf06e371a to your computer and use it in GitHub Desktop.
Save esirK/746903657e7b4ac2436dc7dbf06e371a to your computer and use it in GitHub Desktop.
package decorator_pattern
abstract class Beverage {
open var description: String = "Beverage UnKnown"
//Every beverage must define its own cost
abstract fun cost()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment