FizzBuzz: Difference between revisions

229 bytes added ,  10 months ago
→‎Insitux: implementation
(→‎Insitux: implementation)
Line 5,042:
When play begins: count. Use no scoring.</syntaxhighlight>
 
=={{header|Insitux}}==
<syntaxhighlight lang="insitux">(function fizzbuzz n
(match (map (rem n) [3 5])
[0 0] "FizzBuzz"
[0 _] "Fizz"
[_ 0] "Buzz"
n))
 
(loop 100 i
(-> i inc fizzbuzz print))</syntaxhighlight>
 
=={{header|Io}}==
112

edits