]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/benchmark/base64/base64.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / extra / benchmark / base64 / base64.factor
index 95202f35f984f75e8a51d14a34008ca52f2cdaeb..4f8499a4e3cda404582382bc37a765702e5ae26a 100644 (file)
@@ -4,7 +4,7 @@ USING: math sequences kernel base64 ;
 IN: benchmark.base64
 
 : base64-benchmark ( -- )
-    65535 iota [ 255 bitand ] "" map-as
+    65535 <iota> [ 255 bitand ] "" map-as
     20 [ >base64 base64> ] times
     drop ;