Download
Source
mino is hosted on GitHub:
git clone https://github.com/leifericf/mino.gitYou can also download a zip archive of the latest source.
Single-file inclusion
mino is two files: mino.h (350 lines) and mino.c (~7,000 lines). Copy both into your project and compile. That's it. No build system or package manager required.
Building
Build the standalone REPL binary:
makeOr compile mino into your own program:
cc -std=c99 -o myapp myapp.c mino.cRun the test suite:
make testRequirements
- Any C99-compliant compiler (gcc, clang, MSVC, etc.)
- No external libraries or runtime dependencies
- POSIX or Windows (any platform with a C99 compiler)
License
mino is released under the MIT License. Use it for anything.