]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/benchmark/tcp-echo0/tcp-echo0.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / extra / benchmark / tcp-echo0 / tcp-echo0.factor
index b5a19beb0baae648964b966dffd938204f0d6802..3155ae68f53bd169f30b93b6f70bd11807a58a50 100644 (file)
@@ -8,7 +8,7 @@ IN: benchmark.tcp-echo0
 ! Max size here is 26 2^ 1 - because array-capacity limits on 32bit platforms
 CONSTANT: test-size0 $[ 23 2^ 1 - ]
 
-MEMO: test-bytes ( n -- byte-array ) iota >byte-array ;
+MEMO: test-bytes ( n -- byte-array ) <iota> >byte-array ;
 
 TUPLE: tcp-echo < threaded-server #times #bytes ;