Skip to content

Instantly share code, notes, and snippets.

@jeromewu
Created June 8, 2021 05:34
Show Gist options
  • Save jeromewu/fd60e94f641e1274ca001d7621ba5fd6 to your computer and use it in GitHub Desktop.
Save jeromewu/fd60e94f641e1274ca001d7621ba5fd6 to your computer and use it in GitHub Desktop.
func max(x, y int) int {
if x < y {
return y
}
return x
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment