DenialAdams / roland

Roland programming language
https://www.brick.codes/roland
Apache License 2.0
46 stars 0 forks source link

unknown literal error should be in order #145

Open DenialAdams opened 2 months ago

DenialAdams commented 2 months ago

We weren't able to determine the types of 3 literals ↳ literal @ line 2, column 12 [scratch.rol] ↳ literal @ line 5, column 12 [scratch.rol] ↳ literal @ line 4, column 11 [scratch.rol]

proc main() { let x = []; let z = 0; x[z] = 0; x[z] = -1; } END run: