From f7015bc23d0741f6c6f4570bbea7cea21a0f1617 Mon Sep 17 00:00:00 2001 From: bubba2k <64813843+bubba2k@users.noreply.github.com> Date: Wed, 17 Nov 2021 19:29:48 +0100 Subject: [PATCH] Create README.md --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..4a7d9dd --- /dev/null +++ b/README.md @@ -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.