This is the repository of what's meant to become the Mo programming language. At the moment, sadly it's mostly just a glorified parser as I'm figuring out things.
If you're interested in more details about the languages design philosophy, planned features, syntax and concepts, have a look at the Introduction document.
To try out the compiler/parser
- Have Rust installed.
- Run the following command, replacing
<path_to_mo_file>with a path to a .mo source file. You can find examples in the "examples" repository. For example, you could try out hello.mo
cargo r -r -- -p <path_to_mo_file> --print-ast --print-tokens