Skip to content

Instantly share code, notes, and snippets.

@gyugyu90
Last active April 15, 2020 08:15
Show Gist options
  • Save gyugyu90/be1ab898e923e670965113b397cd375c to your computer and use it in GitHub Desktop.
Save gyugyu90/be1ab898e923e670965113b397cd375c to your computer and use it in GitHub Desktop.
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