LOAD
LOAD <file name>[, <address expression>]
LOAD "INVENT"
COMMAND: To read a BASIC program from cassette into memory, replacing any existing program,
or if using the optional address expression, to load a binary tile into memory. See Chapter 2.
LOCATE
LOCATE [#<stream expression>, l<x coord>,<y coord>
10 MODE 1
20 LOCATE 20,12
30 PRINT CHRS(249)
COMMAND: Moves the text cursor at the stream indicated, to the position specified by the x and y
co-ordinates, which are relative to the origin of the stream (WINDOW). Stream 0 is the default
stream.
Associated keywords: WINDOW
LOG
LOG(<numeric expression>)
?LOG(9999)
9.21024037
FUNCTION: Calculates the natural logarithm of numeric expression.
Associated keywords: EXP, LOG10