Releases: Ivorforce/Monoteny
Releases · Ivorforce/Monoteny
v0.2.0
Initial test release! The binary is a CLI interface and should "just work".
Note that Monoteny programs are 'pure', and cannot interface with IO in any way, including with the OS, file system, or network. At least if everything runs as planned!
Try the following command to get started:
curl https://raw.githubusercontent.com/Ivorforce/Monoteny/refs/tags/v0.2.0/test-code/hello_world.monoteny -O
# Prints Hello World!
./monoteny run hello_world.monoteny
# Prints 10
./monoteny expression "(5 'Int32) * (2 'Int32)"
# Creates hello_world.py
./monoteny transpile --input hello_world.monoteny --all