factor/library/test/benchmark/empty-loop.factor

15 lines
241 B
Factor
Raw Normal View History

2004-08-23 23:27:55 -04:00
IN: scratchpad
USE: compiler
USE: kernel
2004-08-26 22:21:17 -04:00
USE: math
2004-08-23 23:27:55 -04:00
USE: test
2004-10-27 21:21:31 -04:00
: empty-loop-1 ( n -- )
2004-12-17 19:27:42 -05:00
[ ] times ; compiled
2004-10-27 21:21:31 -04:00
: empty-loop-2 ( n -- )
2005-01-23 16:47:28 -05:00
[ ] repeat ; compiled
2004-10-27 21:21:31 -04:00
[ ] [ 5000000 empty-loop-1 ] unit-test
[ ] [ 5000000 empty-loop-2 ] unit-test