jonco3/dynamic
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
dynamic
=======
A python interpreter implemented in C++.
Building
--------
Requires cmake.
$ mkdir release-build && cd release-build
$ cmake ..
$ make -j8 check
$ ./bin/dynamic
> print("Hello world")
Hello world
For a debug build use:
$ cmake -DCMAKE_BUILD_TYPE=DEBUG ..