Report Bugs Here

Moderator: Mmiscool

User avatar
By bugs
#60783
robert badiduwitz wrote:From the last page of the manual....

Spaces are ignored in expressions, except before the '=' sign in assignments:
A = 5 + 3 is OK
A =5+3 is OK
A=5 + 3 is NOT OK
A=5+3 is NOT OK

This may be the problem here.


Ok - I downloaded the latest pdf of the "printed documentation" and indeed that is what is written.
Unfortunately it contradicts the "official" docs which states ( just above the ASCII table at the end):-

"Spaces are don’t care :

A = 5 + 3 is the same as a=5+3"

Regardless, the parser should not alter the content of quoted strings.

:|