my opinion:
the 1 considered by Console_WriteLine as string and not a number, the proof is
Console_WriteLine 1+1 will output 11 and not 2. while in the case of -1 the "-" is a mathematical operation forcing the 1 to be a number (negative number) which is not allowed by Console_WriteLine
but interestingly
'---Load Console Module
Uses "Console"
Long A,B
A=-1
B= 2
'---Print the magic words
Console_WriteLine A+2
PrintL "Press a key to end program"
'---Wait for a key press
WaitKey
will output -12 so it seems Console_WriteLine converts the contents of A to string so string -1 & string 2 = -12
Bookmarks