Skip to content

v0.2.0

Pre-release
Pre-release

Choose a tag to compare

@Ivorforce Ivorforce released this 08 Jul 20:38
· 2 commits to main since this release

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