A programming language made in javascript mostly for learning purposes.
npm install mimo-lang


a simple programming language written in js.
``shinstall globally
npm install -g mimo-lang
`
the folowing are available commands and flags for the cli tool.
`bash`
$ mimo [FILENAME] [-o|--output] [-t|--time] [-h|--help] [-q|--quiet] [-d|--debug] [-v|--version]
example mimo exampleFile.mimo
example:
`js
import Mimo from "../index.js";
let mimo = new Mimo();
let code = / your code here/
mimo.run(code);
`
`
function add(a,b)
return + a b
endfunction
set x 5
set y 2
call add(x,y) -> result
show result
``
more example id the test directory
happy coding 💜