remy / vscode-nextbasic

VS Code tools for NextBASIC
https://marketplace.visualstudio.com/items?itemName=remysharp.nextbasic
8 stars 2 forks source link

PLOT OVER 1; causes an error warning #25

Closed Tailzer closed 3 years ago

Tailzer commented 3 years ago

if you add the OVER 1 command to PLOT followed by semicolon it causes the extension to think there is an error? This is the code that created the error. 5 LET x=0 10 LET t=0.1 20 IF INKEY$="p" THEN GO TO 35 30 GO TO 10 35 LET x0=x 40 LET x=x+t 45 IF x>=255 THEN LET x=0 50 PLOT OVER 1;x0,0: PLOT x,0 55 LET t=t+.2 60 GO TO 20 image