]> gitweb.factorcode.org Git - factor.git/blob - extra/rosetta-code/fizzbuzz/fizzbuzz.factor
Switch to https urls
[factor.git] / extra / rosetta-code / fizzbuzz / fizzbuzz.factor
1 ! Copyright (c) 2012 Anonymous
2 ! See https://factorcode.org/license.txt for BSD license.
3 USING: io kernel math.functions math.parser ranges sequences ;
4 IN: rosetta-code.fizzbuzz
5
6 : fizz ( n -- str ) 3 divisor? "Fizz" "" ? ;
7
8 : buzz ( n -- str ) 5 divisor? "Buzz" "" ? ;
9
10 : fizzbuzz ( n -- str )
11     dup [ fizz ] [ buzz ] bi append [ number>string ] [ nip ] if-empty ;
12
13 : fizzbuzz-main ( -- )
14     100 [1..b] [ fizzbuzz print ] each ;
15
16 MAIN: fizzbuzz-main