]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/rosetta-code/bitmap-bezier/bitmap-bezier.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / extra / rosetta-code / bitmap-bezier / bitmap-bezier.factor
index e65a13aab7f72ae9f637ef2ee752167c636217ea..a38828114ece4bfe116e301bab9b8a1a0e4d5576 100644 (file)
@@ -20,7 +20,7 @@ IN: rosetta-code.bitmap-bezier
 
 ! gives an interval of x from 0 to 1 to map the bezier function
 : t-interval ( x -- interval )
-    [ iota ] keep 1 - [ / ] curry map ;
+    [ <iota> ] keep 1 - [ / ] curry map ;
 
 ! turns a list of points into the list of lines between them
 : points-to-lines ( seq -- seq )