Skip to content

Instantly share code, notes, and snippets.

@ismailgungor
Created April 3, 2019 12:27
Show Gist options
  • Save ismailgungor/08ec60ec2af8ece1a0e9f74ca99e0651 to your computer and use it in GitHub Desktop.
Save ismailgungor/08ec60ec2af8ece1a0e9f74ca99e0651 to your computer and use it in GitHub Desktop.
class Cafe(val cooker: Cooker) {
fun getProduct(name:String): Product{
return cooker.prepareProduct(name)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment