Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 1.09 KB

README.md

File metadata and controls

33 lines (21 loc) · 1.09 KB

MPlus Build Status Build status Codacy Badge

A programming language that took a lot from NtShell

(and no, just in case you are wondering, the syntax is not 100% compatible so most code will need to be rewritten)

To build M+

You need:

  • CMake >= 3.0.0
  • C99 supporting compiler
  • C++11 supporting compiler

(tested with visual studio 2013, clang 3.6, and gcc 4.8)

% mkdir build
% cd build
% cmake ..
% make

To run M+ tests

% ./tests

To run M+ interpreter

% ./mplus [MPlus script]

To code in M+

See the sample code in the sample folder. That hopefully helps!