]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/benchmark/empty-loop-2/empty-loop-2.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / extra / benchmark / empty-loop-2 / empty-loop-2.factor
index ff72d5db445cb2a036d185a13dd3171a50e88e15..45b280a4d8af989b364f18857bbc6a57dfdbd796 100644 (file)
@@ -2,7 +2,7 @@ USING: math math.private kernel sequences ;
 IN: benchmark.empty-loop-2
 
 : empty-loop-2 ( n -- )
-    iota [ drop ] each ;
+    <iota> [ drop ] each ;
 
 : empty-loop-2-benchmark ( -- )
     50000000 empty-loop-2 ;