Find a file
2021-11-24 15:03:07 +01:00
doc rename doc files 2021-11-17 19:46:46 +01:00
examples bugfix 2021-11-17 19:35:15 +01:00
src prettified enum classes 2021-11-24 15:03:07 +01:00
.gitignore Added some visual studio directories 2021-11-24 14:28:29 +01:00
CMakeLists.txt rename from biscuit to bisquit 2021-11-17 19:39:02 +01:00
README.md Create README.md 2021-11-17 19:29:48 +01:00

The Bisquit Programming Language

Bisquit is a first attempt at designing and implementing a simple, interpreted language; Drawing inspiration from typical assembly languages and BASIC. For a quick tour of the language, check the PDF in the /doc/ directory, and check out the the supplied example programs.

To build the interpreter, go to the root of the project directory and do:

mkdir build && cd build
cmake ..
make

The bisquit_interpreter executable will then be built.