Skip to content

Instantly share code, notes, and snippets.

@gyugyu90
Created April 26, 2020 11:07
Show Gist options
  • Save gyugyu90/eea0c63c8ce8ea19118e790a4d23cb39 to your computer and use it in GitHub Desktop.
Save gyugyu90/eea0c63c8ce8ea19118e790a4d23cb39 to your computer and use it in GitHub Desktop.
fun maxOf(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