MinosPlus is an Esoteric Programming Language (Esolang) created in 2025.
It all started as a simple Kata challenge: “Count how many + and - appear in a string using JavaScript”.
From that tiny experiment, the project quickly mutated into a fully working esolang — because, let’s be honest, these kinds of languages are fun and (relatively) easy to make.
📖 If you want to dive into the syntax and symbols, check out the full documentation (coming soon 👀).
If you don’t have Git installed yet:
Debian / Ubuntu / Mint
sudo apt update
sudo apt install gitFedora
sudo dnf install gitArch / Manjaro
sudo pacman -S gitmacOS
brew install git(On Windows, install Git for Windows)
git clone https://github.com/Charllcrot/MinosPlus.git
cd MinosPlusIf you don’t already have Node.js:
Linux (Debian-based)
curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
sudo apt install nodejsOther systems: download the installer from nodejs.org.
chmod +x MinosPlus.jsnpm install -gDone! 🎉
Now you can run MinosPlus directly from your terminal:
minosplus '++--*'Example output:
$ minosplus '++--*'
Result: 0You can also write MinosPlus code in a file with the .mp suffix:
minosplus program.mpCheck the syntax manual for the full symbol list and examples.
(Spoiler: expect plenty of +, -, and other strange symbols 👾)
💡 That’s it! You’re ready to start experimenting with MinosPlus and writing the most questionable esolang programs ever.
Enjoy breaking your brain 🌀
