let test = 0
button "test" [do_something]
print "test"
print test
wait
[do_something]
end
the button should use the string "test" but it uses the value of the var test.
it also prints 2 times 0 to the terminal.
It seems the quotes are ignored by the interpreter.