Skip to content

Instantly share code, notes, and snippets.

@Yardanico
Created October 16, 2017 15:39
Show Gist options
  • Save Yardanico/62b62f39c4c7f7a17d367bb5d3cacf3d to your computer and use it in GitHub Desktop.
Save Yardanico/62b62f39c4c7f7a17d367bb5d3cacf3d to your computer and use it in GitHub Desktop.
type
Comparable = concept a
(a < a) is bool
proc myMax(a, b: Comparable): Comparable =
if a < b:
return b
else:
return a
echo myMax(5, 3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment