[ Objekt ] recursive

var r := Objekt ny.
r på: ['∞'] göra: { :x
Stdout skriva: x, stop.
(x < 3) sann: { self recursive ∞ (x + 1). }.
}.
r ∞ 1.
1
2
3