]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/benchmark/md5/md5.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / extra / benchmark / md5 / md5.factor
index 3ec429248a5c99b5a80e6c4f7e01250470456579..40926758f8d6265bf1a8993a198c156153f38963 100644 (file)
@@ -2,6 +2,6 @@ USING: checksums checksums.md5 sequences byte-arrays kernel ;
 IN: benchmark.md5
 
 : md5-benchmark ( -- )
-    2000000 iota >byte-array md5 checksum-bytes drop ;
+    2000000 <iota> >byte-array md5 checksum-bytes drop ;
 
 MAIN: md5-benchmark