This project contains lua as a submodule. To clone this repository with the Lua submodule run this command.
git clone --recursive [email protected]:swaptr/rlos-cpp-lua.gitTo build this project, run the following commands in the root of the directory.
cmake -S . -B build
make -C buildOR if you prefer the classic way.
mkdir build
cd build
cmake ..
makeThis will generate a binary for our project exercise.
This can be run with this following command:
cd exercise
./exerciseCurrently works on the following platforms:
- Linux
Swapnil says hello
Value of i: 5
Original value: 5
New value: 10You can find the complete output in the output file.