Skip to content

Instantly share code, notes, and snippets.

@igorwojda
Created October 21, 2017 13:42
Show Gist options
  • Save igorwojda/e9ad6502bf7597f2094038592a6f4ce1 to your computer and use it in GitHub Desktop.
Save igorwojda/e9ad6502bf7597f2094038592a6f4ce1 to your computer and use it in GitHub Desktop.
Side effects - calling other side effecting function
fun sumMe(a:Int): Int {
return sum(a, a)
}
fun sum (a:Int, b:Int): Int {
log.info("Added $a + $b")
return a + b
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment