X-Git-Url: https://gitweb.factorcode.org/gitweb.cgi?p=factor.git;a=blobdiff_plain;f=extra%2Fbenchmark%2Fmt%2Fmt.factor;h=13f0ad4069187b3c24eb7a0bdbb840c080b7dc8c;hp=b2f907ba68e6bc2975d5d49b45ad679946904c7c;hb=943596575ad294c074dfa381b70af74dba5992b1;hpb=e738c7206c32bd9b76f3cee31e950835e1b1ee24 diff --git a/extra/benchmark/mt/mt.factor b/extra/benchmark/mt/mt.factor index b2f907ba68..13f0ad4069 100644 --- a/extra/benchmark/mt/mt.factor +++ b/extra/benchmark/mt/mt.factor @@ -4,7 +4,7 @@ USING: fry kernel math random random.mersenne-twister ; IN: benchmark.mt : mt-benchmark ( n -- ) - >fixnum HEX: 533d '[ _ random-32* drop ] times ; + >fixnum 0x533d '[ _ random-32* drop ] times ; : mt-main ( -- ) 10000000 mt-benchmark ;