Menu

Commands accepted

Commands accepted

Input/Output Commands

PUT

Put will PUT a string on screen. If the only input is a number from 1 to 500, then it is treated as a variable:
PUT Hello World!
Hello World!
However, if we use PUT 1 , then it will print the value stored in the variable.

GET

GET will GET input from the user and store it in a variable (variables on this programming language are numbers which range from 1 to 500).
Example:
GET 1
?Hello!
PUT 1
Hello

File Commands

LDF

LDF will load a a file. You can have open only one file at a time, however, this limitation will soon be removed.
Example:
LDF TEST.TXT

CLF

CLF will close the file open.
Example:
CLF

WRT

WRT will write on a file. If a file already has data in it, it will append the string requested to the file.
Example:
WRT Hello World!

RFF

RFF will read from a file and store the output in a variable. Currently, it will show the last line of the file open, however, I am trying to fix it.
Example:
RFF 1

Misc. Commands

END

END will end the programm or terminate the interpreter.

CLS

CLS will Clear the SCreen.


MongoDB Logo MongoDB