home *** CD-ROM | disk | FTP | other *** search
- GET
- Stores a graphic in an array which can later be reused with PUT.
- GOSUB
- Performs the given subroutine then returns to the line after a GOSUB.
- GOTO
- Branches to a line or label.
- HEX$
- Calculates a hexadecimal number.
- IF
- Used in conjunction with THEN. THEN may be followed by a label/linenumber if
- which case program control is transfered there if the condition is true.
- THEN may be followed by another statement.
- IMP
- Logical operator. implies.
- INKEY$
- Reads a single character from the keyboard buffer. If there is nothing there
- the program continues. The character is not printed on the screen.
- INPUT
- Asks the user to type in something at the keyboard(and press return).
- Can be placed with some text. A ? is always added to the INPUT statement.
- eg/INPUT"Type a number";num
- The variable given can either be string or numeric. Whatever the user types
- in is assigned to that variable.
- INPUT$
- Reads characters from the keyboard buffer.
- INSTR
- Searchs for a string within a string.
- INT
- Rounds off a number to form an integer.
-
-