moved to cmake
[aqualang.git] / README.md
blob0a393fd3fc51f524c8b3d18da2ab5f93196fdc7d
1 # jtc
3 A toy programming language interpreter
5 ## building
7 the jtc interpreter has no dependencies and sits in a single C++ file.
8 C++11 capable compilers should compile it without extra options other
9 than enabling C++11.
11 example: `g++ -o jtc jtc.cpp -std=c++0x -O3`