You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// was
builder Turtle repeat times::Int->Turtle= [
t =Turtlenew
times repeat: [
build this: t
]
^t
]
// new
builder Turtle repeat times::Int build::[Turtle->Unit]->Turtle= [
t =Turtlenew
times repeat: [
build Turtle: t
]
^t
]
// call new
repeat(times: 5) build: [...]
So basically u just make receiver and build arg implicit in usual builders
The text was updated successfully, but these errors were encountered:
So basically u just make receiver and build arg implicit in usual builders
The text was updated successfully, but these errors were encountered: