RosettaCodeData/Task/Rate-counter/Smalltalk/rate-counter.st

6 lines
145 B
Smalltalk
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
|times|
times := Bag new.
1 to: 10 do: [:n| times add:
(Time millisecondsToRun: [3000 factorial])].
Transcript show: times average asInteger.