Skip to content

Instantly share code, notes, and snippets.

@mmenestret
Last active October 3, 2019 14:45
Show Gist options
  • Save mmenestret/060eda260d5de365e37521a885d298ed to your computer and use it in GitHub Desktop.
Save mmenestret/060eda260d5de365e37521a885d298ed to your computer and use it in GitHub Desktop.
def myBusinessStuff(...) = {
// Implementations and explicit names
val action1 = ???
val action2 = ???
val action3 = ???
// What business people should almost be able to understand
for {
_ <- action1
_ <- action2
_ <- action3
} yield result
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment