Last active
April 15, 2020 08:15
-
-
Save gyugyu90/be1ab898e923e670965113b397cd375c 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): Int { | |
return a + b | |
} | |
fun main() { | |
print("sum of 3 and 5 is ") | |
println(sum(3, 5)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment