]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/project-euler/052/052.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / extra / project-euler / 052 / 052.factor
index ae603c81fd498bf4f1e96c2139bc231b476e4cfd..9fc2fac588ea539be5d08dae9b38b8bbc270a018 100644 (file)
@@ -24,7 +24,7 @@ IN: project-euler.052
 <PRIVATE
 
 : map-nx ( n x -- seq )
-    iota [ 1 + * ] with map ; inline
+    <iota> [ 1 + * ] with map ; inline
 
 : all-same-digits? ( seq -- ? )
     [ number>digits natural-sort ] map all-equal? ;