arturo-lang/arturo

`dictionary` (`#`) not working with files containing non-proper labels

Opened this issue · 0 comments

Describe the bug

if we do `#"somefile.art" and the file contains e.g.:

a: 2
b: 3

this will work (since we have proper labels that generate DStore operations).

Now, if the file was:

"a"   : 2
"b"   : 3

these would not be label (pay attention the spacing!), but would generate let instructions...