summaryrefslogblamecommitdiff
path: root/src/user/app/kbasic/kbasic.txt
blob: 19131ed482a968f71c5881075adc3c975ac8cec7 (plain) (tree)


















                                                                                           
KBASIC commands

EXEC "<filename.bas>"		fork and run file in a new process
LOAD "<filename.bas>"		reset interpreter context and load file, ends all execution
RUN							start loaded program at begining
END							end execution of program
LIST						list program text

GOTO <label>
IF <a> [=><] <b> THEN <expr>
GOSUB <label>
RETURN
FOR <var> = <a> to <b>
NEXT

PRINT
INPUT

RND