A toy imperative Pascal/C compiled language.
- Install meson
pip3 install --user meson
-
Install ninja build system
-
Run the following in terminal:
meson builddir
meson compile -C builddir
cd builddir
./lexer_demo
meson test -v -C builddir
Add these commands to your text editor for fast access.
For vim, you can add these options to .vimrc or .localvimrc
nmap <leader>cc meson compile -C builddir
nmap <leader>ct meson test -C builddir