A minimal prefix-notation programming language
bun install -g mimo-langmimo path/to/program.mimo
mimo -e "+ 1 2"
echo "+ 1 2" | mimomimo replmimo run <file> # Run a file
mimo repl # Start REPL
mimo fmt <path> --write # Format files
mimo lint <path> # Lint files
mimo test <path> # Run testsfunction add(a, b)
return + a b
end
call add(4, 8) -> result
show result
More examples in test/source/.
bun install
bun run checkThe playground is a web application that allows you to run Mimo code in your browser.
this is just a simple language i created to learn more about how programing languages work. contributions are welcome.
Released under MIT
happy coding 💜

