Fast Track 1.3

From BR Wiki
Jump to navigation Jump to search

Errors

Error Beeps

You may have noticed that as you're working with your programs, BR will beep at you if there is a mistake. Enter the line:

10 Print “Print it all

and BR will produce the Error 1003, which appears in the third section on the bottom bar of your BR console. Checking on the wiki is the best way to learn about unknown errors. Search and you'll see that 1003 is a Missing Quote error. Which you can easily fix to run the program.

Print Newpage

You may have noticed that your console is filling with stuff. Type

Print Newpage

(and enter) and it will clear the screen. When writing programs it's important to use this code to clear your user's screen in between sections of your program so that leftovers don't appear on your screens.

Clear

The Clear command will also clear the screen, but will exit any programs you have running, and delete any unsaved portions, and current variable values. When debugging, CLEAR PROC will clear the current activity but will leave variables intact.