]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/benchmark/mandel/colors/colors.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / extra / benchmark / mandel / colors / colors.factor
index 87a2df6fe545b05a4335ec05e82482efaf63790c..bcae43ea4138aceb612c45b52fa37a16f28a9ab8 100644 (file)
@@ -11,7 +11,7 @@ CONSTANT: sat 0.85
 CONSTANT: val 0.85
 
 : <color-map> ( nb-cols -- map )
-    [ iota ] keep '[
+    [ <iota> ] keep '[
         360 * _ 1 + / sat val
         1 <hsva> >rgba scale-rgb
     ] map ;