Skip to content

Instantly share code, notes, and snippets.

@agustarc
Created June 4, 2017 06:20
Show Gist options
  • Save agustarc/ce3a1d9805789fb7013d94c5c9a041ab to your computer and use it in GitHub Desktop.
Save agustarc/ce3a1d9805789fb7013d94c5c9a041ab to your computer and use it in GitHub Desktop.
fun max(a: Int, b: Int): Int {
if (a > b) {
return a
} else {
return b
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment