About Tinytrek
Most Basic commands are abbreviated as shown below.A.=ABS F.=FOR GOS.=GOSUB G.=GOTORemember that Tiny Basic was an interpreter so that programs could be stopped, edited and then restarted. The direct commands like Run, Save, Stop, and Next are not needed.
IF=IF I.=INP IN.=INPUT L.=LIST
LO.=LOAD N.=NEW N.=NEXT O.=OUTPUT
P.=PEEK P.=POKE PR.=PRINT REM=REMARK
R.=RETURN R.=RND R.=RUN S.=SAVE
S.=SIZE S.=STEP S.=STOP TO=TO
U.=USR W.=WAIT
Star Trek uses a subset of the commands A. F. GOS. G. N. REM, R., R.(), IN,, P. and IF. Note the possible confusion between return which is R. and random which is R.(). When doing cut and paste, look for R.( first and convert to Random( then find the remaining R. and change those to return.
The language only has 26 variables A-Z and these are 16 bit ints. I've used a normal int throughout.
On the next page Converting by Cut and Paste

