Skip to content

Instantly share code, notes, and snippets.

@Axect
Last active October 26, 2017 07:14
Show Gist options
  • Save Axect/b351726def3ef2ef9a6248bf340e80ab to your computer and use it in GitHub Desktop.
Save Axect/b351726def3ef2ef9a6248bf340e80ab to your computer and use it in GitHub Desktop.
Side Effect Example
// Side Effect
class Cafe {
def buyCoffee(cc: CreditCard): Coffee = { // Method of class is determined with def
val cup = new Coffee()
cc.charge(cup.price) // Side Effect!
cup // Scala doesn't need return
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment