vintagechips / ttbasic_win

TOYOSHIKI Tiny BASIC for Windows. Tested in Windows(32/64) PCs.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TOYOSHIKI Tiny BASIC for Windows

The code tested in Windows10(32/64bit) PCs.
Execute ttbasic.exe

Operation example

> list
10 FOR I=2 TO -2 STEP -1; GOSUB 100; NEXT I
20 STOP
100 REM Subroutine
110 PRINT ABS(I); RETURN

OK
>run
2
1
0
1
2

OK
>

The grammar is the same as
PALO ALTO TinyBASIC by Li-Chen Wang
Except 3 point to show below.

(1)The contracted form of the description is invalid.

(2)Force abort key
PALO ALTO TinyBASIC -> [Ctrl]+[C]
TOYOSHIKI TinyBASIC -> [ESC]
NOTE: Probably, there is no input means in serial monitor.

(3)Other some beyond my expectations.

(C)2012 Tetsuya Suzuki
GNU General Public License

About

TOYOSHIKI Tiny BASIC for Windows. Tested in Windows(32/64) PCs.


Languages

Language:C++ 97.1%Language:C 2.9%