2012-07-11 21:43:22 -04:00
|
|
|
! Copyright (C) 2012 John Benediktsson
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
|
|
|
USING: assocs json.reader json.writer kernel math math.parser
|
|
|
|
sequences ;
|
|
|
|
IN: benchmark.json
|
|
|
|
|
|
|
|
: json-benchmark ( -- )
|
2017-06-01 17:59:35 -04:00
|
|
|
200 <iota> [ [ number>string ] keep ] H{ } map>assoc
|
2012-07-11 21:43:22 -04:00
|
|
|
1,000 [ >json json> ] times drop ;
|
|
|
|
|
|
|
|
MAIN: json-benchmark
|