aDotInTheVoid / skate

Skateboard for the mind
Apache License 2.0
2 stars 0 forks source link

Dont be expression based #43

Closed aDotInTheVoid closed 3 years ago

aDotInTheVoid commented 3 years ago

Turns out, whithout some sort of mutability controll, its a pain

let m = [0, 0, 0];
let a = [0]
m[a] = {
   m = [1, 1, 1, 1];
   a = 1;
   len(m)
};