Skip to content

Instantly share code, notes, and snippets.

@ostretsov
Created December 24, 2014 03:22
Show Gist options
  • Save ostretsov/35f73579b62b179ade7c to your computer and use it in GitHub Desktop.
Save ostretsov/35f73579b62b179ade7c to your computer and use it in GitHub Desktop.
def max(x: Int, y: Int): Int = {
if (x > y)
x
else
y
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment