A small interpreted easy extendable programming language.
  • C++ 99.7%
  • CMake 0.3%
Find a file
2025-11-26 13:48:49 +01:00
.github Create pull_request_template.md 2022-11-15 19:52:33 +01:00
assets developer push 13 2022-11-20 12:48:19 +01:00
examples devloper push 1 2022-11-11 16:40:11 +01:00
inc developer push 17 2022-11-26 00:22:05 +01:00
src Fix error: no matching function for call to 'std::vector<std::__cxx11::basic_string<char> >::push_back(std::filesystem::__cxx11::path&)' 2023-01-10 20:39:03 -05:00
stdlib Update math.cpp 2022-11-11 18:58:17 +01:00
.gitignore developer push 17 2022-11-26 00:22:05 +01:00
CMakeLists.txt Merge branch 'main' into developer 2022-11-26 01:31:01 +01:00
CONTRIBUTING.md Update CONTRIBUTING.md 2022-11-17 20:44:48 +01:00
LICENSE Update LICENSE 2022-12-31 16:02:10 +01:00
README.md Removed the logo from the readme 2025-11-26 13:48:49 +01:00

MeowScript

A small interpreted, easy and extendable programming language.

NOTE: DISCONTINUED

Requirements

Compiler Build tool Recommended
Linux g++/clang++ cmake -----------
Windows* mingw64-g++/clang++ nmake & cmake Msys2
MacOS* ------------------- -------------- -----------

*: still not fully supported

Installing

Execute these commands in your shell to download and build MeowScript:

git clone https://github.com/LabRicecat/MeowScript.git
cd MeowScript
mkdir build
cd build
cmake ..
make

Now you can run the interpreter:

meow-script --help

Try it out

You can try out MeowScript REPL by using the --shell option or make a main.mws and run it with

meow-script main.mws