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

  1. KILL
  2. Delates a file and its info.file.
  3. eg/KILL "filename"
  4. LBOUND
  5. Finds the lower boundary of an array.
  6. Useful when using arrays in a subprogram.
  7. See also UBOUND.
  8. LEFT$
  9. This returns the left most portion of a string.
  10. eg/LEFT$("house",1) would be "h"
  11. The given number is the number of characters returned.
  12. LEN
  13. Calculates the length of a string.
  14. eg/LEN("house") would be 5.
  15. The string can be a variable or a constant.
  16. LET
  17. Assigns a value to a string or numeric variable.
  18. Normally the word LET is omitted.
  19. LIBRARY
  20. Used to access libraries.
  21. LINE
  22. Draws a line from point x1,y1 to x2,y2.
  23. Can be used a draw a rectangle(which may be coloured in).
  24. eg/LINE(x1,y1)-[step](x2,y2),3,bf
  25. This draws a box filled with the colour 3.
  26. LIST
  27. A menu item performs the same function.
  28. Probably most useful when used in direct mode.
  29. It normally displays the program source code(listing) from the start, but
  30. LIST label, lists the program from a label.
  31. LLIST
  32. Prints the listing of a program on the printer.
  33. LOAD
  34. A menu item performs the same function.
  35. Probably most useful when used in direct mode.
  36. This loads a program into memory, but does not run it.
  37. LOC
  38. Location within a file.
  39. LOCATE
  40. This moves the cursor to the position you want.
  41. It can be moved to any row or any column.
  42. LOF
  43. Returns the length of a file in bytes.
  44. LOG
  45. Finds the log of a number.
  46. LPOS
  47. Same as POS, but is in relation to the printer.
  48. LPRINT
  49. Prints a line on the printer.
  50. LSET
  51. Used in conjunction with creation of random files.
  52.