LMX // .LMY
.lmySequential
One statement per line — quick, calculator-style scripting.
- Runs here
- a .lmy file
- free to run
WHAT IT IS
Why .lmy exists.
A minimal line-by-line runner built on the LMX parser. Exactly one statement per line; ideal for quick math and print sequences without blocks.
Runs here
This one runs in the browser sandbox with no account, and offline in the CLI.
A WORKED EXAMPLE
demo.lmy
The same script the engine test suite runs, so it cannot quietly stop working.
set x = 1 set x = x + 2 print(x)
SYNTAX
The shape of it.
Straight from the interpreter catalogue — the same summary the editor shows as a placeholder.
set x = 1 set x = x + 2 print(x)
NEXT