GLBasic Programming/BASIC/PRINT, CLEARSCREEN, and END
Tools
General
Sister projects
In other projects
Here you can see more of thePRINTCLEARSCREEN andEND functions:
CLEARSCREENPRINT "Hello, world!"PRINT "I'm learning about commands in BASIC."PRINT "This text is being printed via the PRINT command."PRINT "On the next line, I'll use SHOWSCREEN, then CLEARSCREEN."SHOWSCREENCLEARSCREENPRINT "Finally, on line 11, I'll use END."SHOWSCREENKEYWAITENDPRINT "Now my program is over."SHOWSCREEN
It makes:
Finally, on line 10, I'll use END.
Because there is aEND function, the stuff after theEND is not used.
| Previous: BASIC/Your First Program | Index | Next: BASIC/Variables and Data Types |