Search Results

3
votes

How is Smalltalk’s whileTrue message implemented behind the scenes?

In my VisualWorks image, it's done with recursion: whileTrue: aBlock ^self value ifTrue: [aBlock value. [self value] whileTrue: [aBlock value]] Ho …