Compiles the pseudo "algorithm" code and shows the result
This is a "Interpreter". NOT a compiler. but its too late for the correction of terminology.
- Syntax highlight
- Code Suggestion (Ctrl+space)
- Language support
- Realtime Compiling
Algorithm code is a pseudo code used to teach fundamentals of programming to beginners in education. Rules and syntax of the language can change in differ.
START
x = 12
y = 3
ECHO x + y
FINISH
> 15
START
- Starts the program. must be added at the beginning of the programECHO
- Evaluates and outputs the resultLINE
- Same as ECHO but adds a new line after thatGO
- Makes the program jump to the specified lineIF
- Does X if given Y condition is true. optionaly does Z if given condition is false. Don't add theELSE
and(ifFalseDo)
if other condition is not needed. Usage:IF (condition) THEN (ifTrueDo) ELSE (ifFalseDo)
//
- Allows you to add comments to the program. Comments does not effect anything but they still take up lines in the program. '// this is a comment'FINISH
- Finished the program. mut be added to the end of the program- Operations:
-=
,+=
,-=
,*=
,/=
,++
,--
I heard some of my friends were mentioning how it is difficult to study by yourself because you can't execute the code and check your result. So I thought perhaps it would be cool to work on some kind of next-level-garbage-text parser!