home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.whtech.com
/
ftp.whtech.com.tar
/
ftp.whtech.com
/
club100
/
ref
/
ba01a.do
< prev
next >
Wrap
Text File
|
2006-10-19
|
2KB
|
94 lines
Title: PARAMETERS
NOTE: {enter} means hitting the enter key...
SPECIAL KEYS IN THE COMMAND MODE OF BASIC
LABEL display the labels
PRINT same as typing: LCOPY {enter}
SHIFT/PRINT same as typing: LLIST {enter}
F1 same as typing: FILES {enter}
F2 same as typing: LOAD"
F3 same as typing: SAVE"
F4 same as typing: RUN {enter}
F5 same as typing: LIST {enter}
F8 same as typing: MENU {enter}
You may redefine any of the function keys within BASIC. See KEY under
Keyboard Input for details.
NUMERIC AND STRING OPERATORS
+ addition or unary plus (numeric) or concatenation (string)
- subtraction or unary minus
* multiplication
/ division
\ integer division
^ exponentiation
MOD modulus arithmetic
RELATIONAL OPERATORS
< less than
> greater than
= equal
<= or =< less than or equal to
>= or => greater than or equal to
<> or >< not equal to
LOGICAL OPERATORS
AND logical AND operation
OR logical OR operation
XOR exclusive OR operation
EQV equivalence operation
IMP implication operation
NOT logical NOT operation
OPERATOR HIERARCHY
parentheses
^
+,-
*,/
MOD
+,-
<>,=,=>,<=,><
NOT
AND
OR
XOR
EQV
IMP
NOTE: Within an expression, operators on the same level are evaluated from
left to right, with the exception of parentheses, which are evaluated
from inside to outside.
DATA RANGES
Integers: -32768 to 32767
Single precision: +- 10^-64th to +- 10^62nd (6 significant digits)
Double precision: +- 10^-64th to +- 10^62nd (14 significant digits)
Strings: 0 to 255 characters
NOTE: Unless explicitly defined, the Model 100 considers all constants and
variables, as well as numeric functions, as double precision.
DECLARATION TAGS
% integer
! single precision
# double precision
$ string
<EOF>