RosettaCodeData/Task/Function-frequency/Smalltalk/function-frequency.st

10 lines
268 B
Smalltalk
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
bagOfCalls := Bag new.
Smalltalk allClassesDo:[:cls |
cls instAndClassMethodsDo:[:mthd |
bagOfCalls addAll:mthd messagesSent
].
].
(bagOfCalls sortedCounts to:10) do:[:assoc |
Stdout printCR: e'method {assoc value} is called {assoc key} times.'
].