Skip to content

Instantly share code, notes, and snippets.

@ToJans
Created March 14, 2012 15:45
Show Gist options
  • Save ToJans/2037382 to your computer and use it in GitHub Desktop.
Save ToJans/2037382 to your computer and use it in GitHub Desktop.
F# Experiments
[1..100] |> Seq.map(function
| x when x % 15 = 0 -> "FizzBuzz"
| x when x % 3 = 0 -> "Fizz"
| x when x % 5 = 0 -> "Buzz"
| x -> string x) |> Seq.iter(printfn "%s");;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment