[ Object ] recursive

☞ r ≔ Object new.
r on: ‘∞’ do: { :x
✎ write: x, stop.
(x < 3) yes: { ⛏ recursive ∞ (x + 1). }.
}.
r ∞ 1.
1
2
3