I get the following error (on cup and with ./coco) Code: `i = 0; x = [1 to i]` Coco: `ReferenceError: returni is not defined` As the contrary, LS: ``` var i, x; i = 0; x = [1, 2, 3]; ```
I get the following error (on cup and with ./coco)
Code:
i = 0; x = [1 to i]Coco:
ReferenceError: returni is not definedAs the contrary, LS: