User`s manual

Calculation
+ addition A=B+C
- substruction A=B-C
* multiplication A=B*C
/ division A=B/C
% surplus A=B%C
& logical multiplication (AND) A=B&C
| logical addition (OR) A=B|C
¥ exclusive-OR (XOR) A=B¥C
The integers are 4 bytes in value. The final value is always truncated to it’s decimal
point.
10 A=5
20 B=A/2
30 PRINT B
RUN
2
The calculation below is in accordance with general arithmetic operation.
10 A=2 : B=3 : C=4
20 D=A*(B+C)
30 PRINT D
RUN
14
You can carry out floating-point operations and trigonometrical function operations
using a coprocessor (option).
24