On Windows (in cmd):
mingw32-make -f Makefile-win
On Linux:
make -f Makefile-linux
On PowerShell:
mingw32-make -f Makefile-PS # On Windows
make -f Makefile-PS # On Linux
To transpile C++S source to C++, simply invoke the following command:
cpps-trans source.cpps -o source.cpp
or
cpps-trans -o source.cpp source.cpps
C++Script is a language based on C++ with syntax like in Pascal/Python/Ruby/Perl.
With it, you can choose a line comment char, a multiline comment char(s), whether operators are alphabetic characters or basic and whether neq operator is =/=
or !=
or neq
!
In the future C++S is expected to be reflective and DSL-oriented, but it will be GPL as well.
More info can be found in the main repo (here).