Discover

Topics

Tiny BASIC

Tiny BASIC APK

Tiny BASIC APK

0.006 FreeVisual Software Laboratory ⇣ Download APK (4.44 MB)

Tiny BASIC operating in the mobile terminal

What's Tiny BASIC APK?

Tiny BASIC is a app for Android, It's developed by Visual Software Laboratory author.
First released on google play in 8 years ago and latest version released in 6 years ago.
This app has 5.9K download times on Google play and rated as 3.33 stars with 39 rated times.
This product is an app in Education category. More infomartion of Tiny BASIC on google play
モバイル端末で動作する Tiny BASIC

ver 2.x is released
https://play.google.com/store/apps/details?id=org.dyndns.vivi.TinyBASIC2

command:
'<LineNum> <statement>': add line
'<LineNum>': remove line <lineNum>
'RUN': run program
'NEW': clear program
'LIST': print program
'RENUM': renumber program
'LOAD <fileName>': load from <fileName>
'SAVE <fileName>': save to <fileName>
'DIR': print saved files list

statement:
'<var> = <exp>' assign <exp> to <var>
'PRINT {<exp>|<string>}': print <exp> or <string>
'IF <exp> THEN {<statement>|<lineNum>}': if <exp> then exec
'FOR <var>=<exp1> TO <exp2>': for loop
'NEXT': inc <var> and loop
'GOTO <lineNum>': jump to line <lineNum>
'GOSUB <lineNum>': call subroutine
'RETURN': return from subroutine
'END'

expression:
<exp> ::= <term> | <term> <op> <exp>
<term> ::= [-] {<digits> | <var> | ( <exp> )}
<var> ::= A | B | ...| Z | @(<exp>)
<op> ::= AND | OR | = | <> | > | >= | < | <= | + | - | * | / | %

Website: http://vivi.dyndns.org/games/TinyBASIC/