[ Object ] recursive

>> r := Object new.
r on: ['∞'] do: { :x
Out write: x, stop.
(x < 3) true: { self recursive ∞ (x + 1). }.
}.
r ∞ 1.
1
2
3