Skip to content

Instantly share code, notes, and snippets.

@dom96
Created May 26, 2018 12:44
Show Gist options
  • Save dom96/3c90c9be8ea28e1c680ff9e24d13959f to your computer and use it in GitHub Desktop.
Save dom96/3c90c9be8ea28e1c680ff9e24d13959f to your computer and use it in GitHub Desktop.
let fizzbuzz2 = map(
toSeq(1 .. 100),
proc(x: int): string =
if x mod 3 == 0 and x mod 5 == 0:
"fizzbuzz"
elif x mod 3 == 0:
"fizz"
elif x mod 5 == 0:
"buzz"
else:
$x
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment