Conversation
how do you do while loops actually
2
0
0
@toast i think i'm thinking the wrong way
0
0
0
@twinspin6
while (expression) {
dothingthatimpactsexpression;
}
0
0
1
@twinspin6@outerheaven.club function loop(condition, body)
if not condition() then
return
else
body()
loop(condition, body)
end
end
1
0
2