Created
June 4, 2018 08:30
-
-
Save sajjadyousefnia/d7d961f261f0c0ef738f7554a0ef2e08 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val addNumbers = { number1: Int, number2: Int -> | |
println("Adding $number1 and $number2") | |
val result = number1 + number2 | |
println("The result is $result") | |
} | |
addNumbers(1, 3) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment