While
main.w
let var i = 0;
while(i < 2){
log("while {i}");
i = i + 1;
}
Wing console output
# Run locally with wing console
wing it
while 0
while 1
let var i = 0;
while(i < 2){
log("while {i}");
i = i + 1;
}
# Run locally with wing console
wing it
while 0
while 1