Why Nostr? What is Njump?
2023-11-09 04:50:53

Rotziiwahl on Nostr: started "learn you a haskell for great good" and, voila, fizzbuzz in haskell: ``` ...

started "learn you a haskell for great good" and, voila, fizzbuzz in haskell:
```
fizzBuzz xs = [ if x `mod` 15 == 0 then "FizzBuzz" else if x `mod` 5 == 0 then "Buzz" else if x `mod` 3 == 0 then "Fizz" else show x | x <- xs]
```
Author Public Key
npub1qcsxr5lmkqlhnhdrwxkuwpvkvtha67tmlztq0m0hjeled8lcpp9ss4w50l