Created
April 15, 2020 08:20
-
-
Save gyugyu90/d2d330809433736cc7f76cb87abe9d21 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
fun sum(a: Int, b: Int) = a + b | |
fun main() { | |
println("sum of 19 and 23 is ${sum(19, 23)}") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment