* Make a build directory to store all the build files
```bash
mkdir build && cd build
```
* Configure CMake
```bash
cmake .. -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX
```
* Build the project
```bash
make
```
* Install application
```bash
make install
```
* Launch Jupyter Notebook in the browser
```bash
jupyter notebook
```
* Launch Jupyter Notebook in the terminal
```bash
jupyter console --kernel=xbasic
```
## Created By
- [Sarita Singh](https://github.com/itssingh)
- [Avinal Kumar](https://github.com/avinal)
## Acknowledgement
The BASIC language parser used in this project is a modified version of the [basic](https://github.com/nanoflite/basic) project created by [Johan Van den Brande](https://github.com/nanoflite).