How To

Weird glitch

1

412lop 2023-05-06 02:54

When I this program it’s says syntax error. is this a glitch?


was8bit 2023-05-06 04:16

Open up the HELP file, and scroll down to the very bottom of the help page...

There you will find a list of reserve commands you cannot use as variable names, even if lowres does not yet use them ;)

VAL is on the reserved list...


was8bit 2023-05-06 05:10

This is an example of how the VAL command can be used ;)

PRINT VAL("21")*2


was8bit 2023-05-06 05:12

Other interesting commands ;)

PRINT "("+STR$(21)+")"

PRINT ASC("A")

PRINT CHR$(65)


Log in to reply.