]> gitweb.factorcode.org Git - factor.git/blob - extra/benchmark/wrap/wrap.factor
7bd8d0335f93775ef859d71579b7618fc020bfd0
[factor.git] / extra / benchmark / wrap / wrap.factor
1 ! Copyright (C) 2012 John Benediktsson
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: kernel math math.parser sequences wrap wrap.strings ;
4 IN: benchmark.wrap
5
6 : wrap-benchmark ( -- )
7     1,000 iota [ number>string ] map " " join
8     100 [ dup 80 wrap-string drop ] times drop ;
9
10 MAIN: wrap-benchmark