NEUPL syntax <-- Back to interpreter

NEUPL is a stack-based language. Most operations rely on the internal stack in some way.

Please note that this language is not Turing-Complete.

Commands

NEUPL recognises a few commands, all of which are case-insensitive:

Characters inside of quotation marks are automatically pushed to the stack.

If you do not explicitly print anything during the program, the contents of the stack will be implicitly printed.

Input to NEUPL is flipped and inserted into the stack at program execution. If you want input to be ignored, add

ln
to the beginning of your program.


Created and developed by _iPhoenix_.