Commodore 64 BASIC would interpret the second equal sign as a
logical operator and set B
= -1 if C = O. Instead, convert this state-
ment to:
1!11C=0 : B=!II
Multiple Statements
Some BASICs use a backslash (\ ) to separate multiple statements on
a line. With Commodore 64 BASIC, separate all statements by a colon
(:).
MAT Functions
Programs using the MATfunctions available on some BASICsmust be
rewritten using FOR. . .NEXT loops to execute properly.
149