This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
tutorials:basic [2024/09/30 08:45] papa [External Resources] Update link to BASIC-PLUS-2 Language Manual |
tutorials:basic [2024/10/04 04:14] (current) papa [Using BASIC] |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== Using BASIC ====== | ====== Using BASIC ====== | ||
- | You should read a tutorial on using one of the available text editors before reading this tutorial. This tutorial will assume that you're comfortable running programs from the EXEC and creating text files. | + | TWENEX's BASIC programming system is **LOTS BASIC**, developed at Stanford University. |
- | For a full guide to the BASIC language available, see [[http:// | + | Start BASIC with the EXEC command '' |
- | ===== Your first BASIC program ===== | + | The following tutorial is adapted from chapter 17. " |
+ | //LOTS DECSYSTEM-20 Overview Manual//. (1984). Accessed: October 1, 2024. [Online]. Available: | ||
+ | http:// | ||
- | This section will explain the fundamentals of creating | + | (Although not strictly relevant to LOTS BASIC, |
+ | ===== BASIC Example ===== | ||
- | BASIC programs require line numbers. You should increment each line by 10 to allow for adding lines in between later. | + | For those already familiar with BASIC and who would like a summary of LOTS BASIC commands, skip the following example and see [[#BASIC Command Summary|BASIC Command Summary]]. |
- | Start by creating | + | Here is an example of how you might start BASIC, enter a program and run it, then leave BASIC. In the example, what the user types in is underlined. We start in the EXEC, which prompts |
- | '' | ||
- | This is the infamous Hello, World! program for the TOPS-20 flavor of BASIC. | + | > '' |
+ | > '' | ||
+ | > '' | ||
+ | > '' | ||
- | To run the program, | + | BASIC types a greeting message, spaces down a line and stops. We may no begin typing in our program, |
- | '' | + | > '' |
+ | > '' | ||
+ | > '' | ||
+ | > '' | ||
+ | > '' | ||
+ | > '' | ||
+ | > '' | ||
- | You will now need to load your program. | + | We have finished typing in the program, so we ask BASIC to run it by typing the RUN command. BASIC knows this command is not part of the program |
- | '' | + | > '' |
+ | > '' | ||
+ | > ''? | ||
+ | > '' | ||
+ | > | ||
+ | > '' | ||
- | You' | + | BASIC tells us that the program needs an END statement, |
- | At the next '' | + | > '' |
- | In order to build the program for use without the BASIC program, | + | Now our program |
- | ===== Variables ===== | + | > '' |
+ | > | ||
+ | > '' | ||
+ | > | ||
+ | > '' | ||
+ | > ''? | ||
+ | > '' | ||
+ | > '' | ||
+ | > ''? | ||
+ | > '' | ||
+ | > '' | ||
+ | > ''? | ||
+ | > '' | ||
+ | > | ||
+ | > '' | ||
- | ==== Assignment ==== | + | By the way, you probably understood the program as it was written, without any commentary on our part; this illustrates the advantage of BASIC: it is easy to understand. Now let's add one more line. |
+ | > '' | ||
- | Variable assignment in BASIC is pretty similar | + | It makes perfect sense to insert this line between lines 50 and 60, and this is what BASIC does. Let's see what the program looks like now. The " |
- | '' | + | > '' |
+ | > | ||
+ | > '' | ||
+ | > '' | ||
+ | > '' | ||
+ | > '' | ||
+ | > '' | ||
+ | > '' | ||
+ | > '' | ||
+ | > '' | ||
+ | > '' | ||
+ | > | ||
+ | > '' | ||
- | Variables do not need to be declared before use. Standard arithmetic operations like +, -, / and * are available for use with either number literals or variable names. | + | We rerun the program |
- | ==== Types ==== | + | > '' |
+ | > | ||
+ | > '' | ||
+ | > ''? | ||
+ | > '' | ||
+ | > '' | ||
+ | > '' | ||
+ | > ''? | ||
+ | > '' | ||
+ | > | ||
+ | > '' | ||
- | BASIC variable types are determined by an optional suffix | + | Having put so much effort into our program, we would like to keep it around for later use. In saving it, we decide to give it the name TEST. |
- | It is important to remember that X, X$ and X% are all different variables, not just different interpretations of the same variable. | + | > '' |
- | ===== Reading Input ===== | + | > |
+ | > '' | ||
- | Reading input from the terminal is rather simple. The function used is called '' | + | In the future, when we are in BASIC and want to retrieve this program, we would use the command "OLD TEST". We have reached the end of our example, se we return to the EXEC. |
- | The value read can be a number, integer or string depending upon the variable type given as a parameter. | + | > '' |
+ | > '' | ||
- | The " | + | We will find our saved program |
- | < | + | ===== BASIC Command Summary ===== |
- | 10 PRINT "Enter your name:" | + | |
- | 20 INPUT X$ | + | |
- | 30 PRINT " | + | |
- | </ | + | |
- | This is also an example | + | This is a summary |
- | ===== Loops ===== | + | |
- | Given that every line has a line number, | + | |CTRL/ |
+ | |BYE|Logs you completely off the system.| | ||
+ | |CATALOG dev:|Lists onto the user's terminal the names of the user's files which exist on the specified device.| | ||
+ | |COPY dev: | ||
+ | | |Copies the first file onto the second.| | ||
+ | |DELETE | ||
+ | | |Erases the specified lines from core. For example, " | ||
+ | |LIST line number arguments|| | ||
+ | | |Lists the specified lines of the program currently in core onto the user's terminal. The line number arguments are of the form described under the delete command. If no arguments are specified, the entire program is listed.| | ||
+ | |MONITOR|Returns | ||
+ | |NEW dev: | ||
+ | | |The program currently in core is erased from core and the specified | ||
+ | |OLD dev: | ||
+ | | |The program currentloy in core is erased from core and the specified file is pulled into core to become the new " | ||
+ | |RENAME dev: | ||
+ | | |Changes the name of the program currently in core to the specified name.| | ||
+ | |REPLACE|See SAVE.| | ||
+ | |RESEQUENCE|Changes the line numbers of the program currently in core to 10, 20, 30,.... (Line numbers within lines (as, GO TO 1000) are changed appropriately).| | ||
+ | |RUN|Compiles and executes the program currently in core. The command RUNNH is equivalent, but runs the program without printing | ||
+ | |SAVE dev: | ||
+ | | |Writes out the program currently in core as a file with the specified name. BASIC will return an error message if save attempts to write over an existing file; to write over a file you must type " | ||
+ | |SCRATCH|Erased from core the program currently in core.| | ||
+ | |SYSTEM|Exits from BASIC to monitor level. N.B., the contents of core are lost. You must give the EXEC command REENTER rathre than CONTINUE, START, or BASIC to resume the current BASIC program. " | ||
+ | |UNSAVE dev: | ||
+ | | |Deletes the specified file. More than one file can be specified; for example, UNSAVE DSK: | ||
- | "The unbridled use of the go to statement has as an immediate consequence that it becomes terribly hard to find a meaningful set of coordinates in which to describe the process progress. ... The go to statement as it stands | + | In the commands above which accept such arguments, if " |
- | There are three structured programming loop structures available | + | The keywords of commands (CATALOG, LIST, etc.) may be abbreviated to their first three letters. Only the three letter abbreviation and the full word form are legal; intermediate abbreviations such as CATAL, |
- | ==== for loops ==== | + | Whenever BASIC finishes executing a command, it types " |
- | ==== while loops ==== | + | To insert or replace a line in the program currently in core, simply type the line and then press the RETURN key. BASIC distinguishes between lines (which must be stored or erased) and commands (which must be processed) by the fact that a line always begins with a line number whereas commands all begin with letters. |
- | ==== do loops ==== | ||
- | |||
- | ===== Conditionals ===== | ||
- | |||
- | ==== if statements ==== | ||
- | |||
- | ==== switch statements ==== | ||
- | |||
- | |||
- | ===== Sample Programs ===== | ||
- | |||
- | //Users should feel free to add their programs to this section.// | ||
- | |||
- | ===== See Also ===== | ||
- | |||
- | * [[tutorials: | ||
- | * [[tutorials: | ||
- | |||
- | ===== External Resources ===== | ||
- | |||
- | * [[http:// | ||