User`s manual
A-8
String
Character Function Example Page
!
Single character.
!
3/5
%spaces%
String with length equal to 2
plus number of spaces between
% symbols.
% %
3/5
Program Statements
Statement/Function Examples Page
(Type Definition)
DEFDBL
letter list or range
Define as double-precision all
variables beginning with
specified letter, letters or range
of letters.
DEFDBL J
DEFDBL X,Y,A
DEFDBL A-E,J
4/3
DEFINT
letter list or range
Define as integer all variables
beginning with specified letter,
letters or range of letters.
DEFINT A
DEFINT C,E,G
DEFINT A-K
4/2
DEFSNG
letter list or range
Define as single-precision all
variables beginning with
specified letter, letters or range
of letters
DEFSNG L
DEFSNG A-L,Z
DEFSNG P,R,A-K
4/3
DEFSTR
letter list or range
DEFSTR A-J
4/4
(Assignment and Allocation)
CLEAR
n
Set aside specified number of
bytes
n
for string storage. Clears
value and type of all variables.
CLEAR 750
CLEAR MEM/10
CLEAR 0
4/4
DIM
array(dim#1, …,dim#k)
Allocate storage for k-
dimensional
array
with the
specified size per dimension:
dim#1, dim#2, …, etc. DIM may
be followed by a list of arrays
separated by commas.
DIM A(2,3)
DIM A1(15),A2(15)
DIM B(X+2),C(J,K)
DIM T(3,3,5)
4/4-5
6/1-7










