factor/extra/benchmark/yield/yield.factor

10 lines
217 B
Factor
Raw Normal View History

! Copyright (C) 2012 John Benediktsson
! See http://factorcode.org/license.txt for BSD license.
USING: math threads ;
IN: benchmark.yield
: yield-benchmark ( -- )
100,000 [ yield ] times ;
MAIN: yield-benchmark