RosettaCodeData/Task/Rate-counter/Smalltalk/rate-counter.st
2023-07-01 13:44:08 -04:00

5 lines
145 B
Smalltalk

|times|
times := Bag new.
1 to: 10 do: [:n| times add:
(Time millisecondsToRun: [3000 factorial])].
Transcript show: times average asInteger.