diff --git a/README.md b/README.md index 11861e5..106d343 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,22 @@ Simple programming language frontend written in python using llvmlite. # Getting Started ## Building a program -`python main.py build test.txt` +``` +python main.py build test.txt +``` ## Running a program (JIT Compilation) -`python main.py run test.txt` +``` +python main.py run test.txt +``` + +## Writing a simple program +There are only void's and int's in this language so we can't print out "Hello, World" +```c++ +#include + +int main() { + print(120); + return 0; +} +```