diff options
Diffstat (limited to 'src/user/app/kbasic/kbasic.txt')
-rw-r--r-- | src/user/app/kbasic/kbasic.txt | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/user/app/kbasic/kbasic.txt b/src/user/app/kbasic/kbasic.txt new file mode 100644 index 0000000..19131ed --- /dev/null +++ b/src/user/app/kbasic/kbasic.txt @@ -0,0 +1,19 @@ +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 |