Create README.md

This commit is contained in:
bubba2k 2021-11-17 19:29:48 +01:00 committed by GitHub
parent 37d31e242c
commit f7015bc23d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

12
README.md Normal file
View file

@ -0,0 +1,12 @@
# 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.