Skip to content

Instantly share code, notes, and snippets.

@HomMarkHunt
Last active December 7, 2017 11:41
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 HomMarkHunt/a6336a5cb7a2972da8ad494d8de47f6c to your computer and use it in GitHub Desktop.
Save HomMarkHunt/a6336a5cb7a2972da8ad494d8de47f6c to your computer and use it in GitHub Desktop.
fp-scala-1
class Cafe {
def buyCoffee(cc: CreditCard): Coffee = {
val cup = new Coffee()
cc.charge(cup.price) // 副作用
cup
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment