|
Post Made Community Wiki by Community♦
|
||||
|
|
||||
|
3 | added 75 characters in body | ||
|
An F# solution is as follows:- Edit: Modified to compile under F# 1.9.6.0 latest CTP.
#light
let inline (/%) x y = x % y = 0
let fb = function
| x when x /% 15 -> "FizzBuzz"
| x when x /% 3 -> "Fizz"
| x when x /% 5 -> "Buzz"
| x -> Int32.to_string x
x.ToString()
[1..100] |> List.map (fb >> printfn "%s")
For some reason the context highlighter seems to go crazy with this one so I used pre tags instead! |
||||
|
2 | added 27 characters in body | ||
|
An F# solution is as follows:-
#light
let inline (/%) x y = x % y = 0
let fb = function
| x when x /% 15 -> "FizzBuzz"
| x when x /% 3 -> "Fizz"
| x when x /% 5 -> "Buzz"
| x -> Int32.to_string x
[1..100] |> List.map (fb >> printfn "%s")
For some reason the context highlighter seems to go crazy with this one so I used pre tags instead! |
||||
|
1 |
|
||
