Skip to content

Instantly share code, notes, and snippets.

@joegaudet
Created December 12, 2017 21:00
Show Gist options
  • Save joegaudet/d6cfc6751c016a336c303ca5143428c3 to your computer and use it in GitHub Desktop.
Save joegaudet/d6cfc6751c016a336c303ca5143428c3 to your computer and use it in GitHub Desktop.
let fizzbuzz = (i) =>
switch (i mod 3, i mod 5) {
| (0, 0) => "FizzBuzz"
| (0, _) => "Fizz"
| (_, 0) => "Buzz"
| _ => string_of_int(i)
};
for (i in 1 to 100) {
Js.log(fizzbuzz(i))
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment