11.07.2015 Views

Here - 1000 BiT

Here - 1000 BiT

Here - 1000 BiT

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

SOME MORE MISTAKES WITH COLONSThe REM and the GOTO commands must be last on a line. Anything following them isignored.Correct: 35 P=3:REM P IS THE PRICEWrong: 35 REM P IS THE PRICE: P=3because the computer ignores everything else on a line after reading REM.Correct: 40 R=P+1 :GOTO 8842S=3Wrong:40 R=P+1 :GOTO 88:S=3Because the computer goes to line 88 and can never come back to do the S=3 command.COMMANDS, STATEMENTS AND LINESCommands tell the computer to do something. So far we have used these commands:PRINT, NEW, RUN, LIST, REM, INPUT, LET,GOTO, IF, SAVE, LOADCommands used in numbered lines may be called "statements." Used alone, they arealways called "commands."Enter LIST We say we have "entered a command."92

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!