|
Lines 1-8
Link Here
|
| 1 |
tcbasic implements a small subset of BASIC known as Tiny BASIC. |
1 |
tcbasic implements a small subset of BASIC known as Tiny BASIC. |
| 2 |
It provides the following statements and commands: INPUT, PRINT, |
2 |
It provides the following statements and commands: INPUT, PRINT, |
| 3 |
LET, GOTO, GOSUB, RETURN, IF, END, CLEAR, LIST, and RUN. Integer |
3 |
LET, GOTO, GOSUB, RETURN, IF, END, CLEAR, LIST, RUN, and STOP. |
| 4 |
arithmetic is supported, and strings may be PRINTed. A built-in |
4 |
Integer and floating point arithmetic is supported, and strings |
| 5 |
RND(n) function provides random numbers. |
5 |
may be PRINTed. The following built-in functions are provided: |
|
|
6 |
SIN, COS, TAN, COT, ATN, EXP, LOG, ABS, SQR, RND. |
| 6 |
|
7 |
|
| 7 |
The small size of the language make it easy to learn and master |
8 |
The small size of the language make it easy to learn and master |
| 8 |
while providing all of the building blocks needed to develop many |
9 |
while providing all of the building blocks needed to develop many |