Specifications

BASIC commands
PROGRAMMING MANUAL 111
Revision 5.0
3.2.167 LIST
/i
3.2.168 LIST_GLOBAL
/i
3.2.169 LN
/i
3.2.170 LOCK
/i
Example Consider the following line in a program.
LINPUT#5, VR(0)
Entering START<CR> on port 5 will give
VR(0)=83 ' ASCII 'S'
VR(1)=84 ' ASCII 'T'
VR(2)=65 ' ASCII 'A'
VR(3)=82 ' ASCII 'R'
VR(4)=84 ' ASCII 'T'
VR(5)=13 ' ASCII carriage return
See also GET, INPUT, VR
Type Program command (Trajexia Studio command line only)
Syntax LIST [ "program_name" ]
TYPE [ "program_name" ]
Description For use only with the Command Line Terminal interface. LIST is used as an
immediate (command line) command only and must not be used in programs.
The LIST command prints the current selected program or the program spec-
ified by program_name. The program name can also be specified without
quotes. If the program name is omitted, the current selected program will be
listed.
Note: This command is implemented for an offline Command Line Terminal.
Within Trajexia Studio users can use the terminal window.
Arguments program_name
The program to be printed.
Example No example.
See also SELECT.
Type System command (terminal only)
Syntax LIST_GLOBAL
Description When executed from the Command Line Terminal interface (channel 0), all
the currently set GLOBAL and CONSTANT parameters will be printed to the
terminal.
Arguments N/A
Example In an application where the following GLOBAL and CONSTANT have been
set:
CONSTANT "cutter", 23
GLOBAL "conveyor",5
>>LIST_GLOBAL
Global VR
---------------- ----
conveyor 5
Constant Value
---------------- -------
cutter 23.0000
See also N/A
Type Mathematical function
Syntax LN(expression)
Description The LN function returns the natural logarithm of the expression. The input
expression value must be greater than 0.
Arguments expression
Any valid BASIC expression.
Example >> PRINT LN(10)
2.3026
See also N/A
Type System command