]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/rosetta-code/fizzbuzz/fizzbuzz.factor
factor: trim more using lists.
[factor.git] / extra / rosetta-code / fizzbuzz / fizzbuzz.factor
index adaca37217c112ff5b22cf8ab0ae568549ee2315..a9a93b97d369c6733aeb0683f10feaf24d1e045e 100644 (file)
@@ -1,7 +1,6 @@
 ! Copyright (c) 2012 Anonymous
 ! See http://factorcode.org/license.txt for BSD license.
-USING: io kernel math math.functions math.parser ranges
-sequences ;
+USING: io kernel math.functions math.parser ranges sequences ;
 IN: rosetta-code.fizzbuzz
 
 : fizz ( n -- str ) 3 divisor? "Fizz" "" ? ;