LiveScript
LiveScript copied to clipboard
for loops: continue on a label causes returned value to be undefined
An array of 10 1s
do ->
:outer for til 10
if false => continue
1
Doesn't try to return anything (undefined)
do ->
:outer for til 10
if false => continue outer
1
Seems like this here is to blame.