home *** CD-ROM | disk | FTP | other *** search
/ 17 Bit Software 2: Collection B / 17Bit_Collection_B.iso / files / 1438.dms / in.adf / BASIC_HELP / help3 < prev    next >
Encoding:
Text File  |  1978-09-12  |  1021 b   |  31 lines

  1. GET
  2. Stores a graphic in an array which can later be reused with PUT.
  3. GOSUB
  4. Performs the given subroutine then returns to the line after a GOSUB.
  5. GOTO
  6. Branches to a line or label.
  7. HEX$
  8. Calculates a hexadecimal number.
  9. IF
  10. Used in conjunction with THEN. THEN may be followed by a label/linenumber if
  11. which case program control is transfered there if the condition is true.
  12. THEN may be followed by another statement.
  13. IMP
  14. Logical operator. implies.
  15. INKEY$
  16. Reads a single character from the keyboard buffer. If there is nothing there
  17. the program continues. The character is not printed on the screen.
  18. INPUT
  19. Asks the user to type in something at the keyboard(and press return).
  20. Can be placed with some text. A ? is always added to the INPUT statement.
  21. eg/INPUT"Type a number";num
  22. The variable given can either be string or numeric. Whatever the user types
  23. in is assigned to that variable.
  24. INPUT$
  25. Reads characters from the keyboard buffer.
  26. INSTR
  27. Searchs for a string within a string.
  28. INT
  29. Rounds off a number to form an integer.
  30.  
  31.