]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/benchmark/ui-panes/ui-panes.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / extra / benchmark / ui-panes / ui-panes.factor
index 345ef36d552e53ac1d571cbb25d218afbd2483b2..f68943788759d1d51bb66c214ad6879f7432b398 100644 (file)
@@ -2,6 +2,6 @@ USING: io kernel math.parser sequences ui.gadgets.panes ;
 IN: benchmark.ui-panes
 
 : ui-panes-benchmark ( -- )
-    [ 10000 iota [ number>string print ] each ] make-pane drop ;
+    [ 10000 <iota> [ number>string print ] each ] make-pane drop ;
 
 MAIN: ui-panes-benchmark