BASIC Programming/Beginning BASIC/PRINT, CLS, and END

< BASIC Programming < Beginning BASIC

BASIC Programming > Beginning BASIC > Your First Program


Introduction

In the previous code example, we wrote your first BASIC program. In it, you saw examples of PRINT, CLS, and END commands. Their roles in the program may or may not have been apparent at the time, but, as they're so vital to the BASIC language, they will be discussed here.

Program Example

10 CLS
20 PRINT "Hello, world!"
30 PRINT "I'm learning about commands in BASIC."
40 PRINT "This text is being printed via the PRINT command."
50 PRINT "On the next line, I'll use CLS."
60 CLS   "Now the next word would be PRINT."
70 PRINT "Finally, on line 80, I'll use END."
80 END   "And return to PRINT"
90 PRINT "Now my program is over."

Output

Finally, on line 80, I'll use END.

Discussion

From that example, it's fairly easy to deduce what each command does.

CLS 
An abbreviation that stands for the words CLear Screen. In the above program, when you used CLS on line 60, all of the words that were printed to the screen were wiped away.
PRINT 
Writes to the screen. There are commands for printing to other things, like a printer, but that's to be discussed later. Each new PRINT command will start printing on a new line. To insert a blank line, don't specify a string to print. The syntax for "PRINT" is: PRINT "[whatever you want to be printed here]"
END 
It stops the program at that line; that is, anything that's added after that won't show. That's why the PRINT command on line 90 didn't print anything. The END command can be included in control structures to end the program if a condition is met. This will be discussed with control structures.


What is happening?

Line 10 the display is cleared.
Lines 20 through 50 shows first paragraph displayed.
Line 60 again clears the display.
Line 70 shows the message you should see after you run this program.
Line 80 Ends the program.
Line 90 This line helps to show that a END statement stops the program at that point.

Given the state of computer speed today you should not see the paragraph displayed by lines 20 through 50, it should be cleared by the CLS statement on Line 60 before you have a chance to see it. If you slow the program down you can see the program write the message to the screen. Line 70 is then written to the screen/display then Line 80 stops everything. Line 90 never, ever runs.

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.