]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/project-euler/032/032.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / extra / project-euler / 032 / 032.factor
index 00de5e1a8543deb856a677d94ac3d1ffb3b79a19..ff1824463bad6be77df28ff5cc4c625e1956b1f9 100644 (file)
@@ -27,8 +27,8 @@ IN: project-euler.032
 <PRIVATE
 
 : source-032 ( -- seq )
-    9 factorial iota [
-        9 iota permutation [ 1 + ] map digits>number
+    9 factorial <iota> [
+        9 <iota> permutation [ 1 + ] map digits>number
     ] map ;
 
 : 1and4 ( n -- ? )