Hi Eros,

I found a problem in core or parsing.
Try following:
[code=thinbasic]
uses "Console"

local a AS ASCIIZ * 256 = "Ciao"
local b AS ASCIIZ * 256 value "Ciao"

PRINTL "A =", a
PRINTL "B =", b
waitkey
[/code]
For a I get nothing, for b I get correct value. So it seems VALUE is not the same as equal sign in this case.


Thanks,
Petr