Skip to content

swaptr/rlos-cpp-lua

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rlos-cpp-lua

How to build

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.git

To build this project, run the following commands in the root of the directory.

cmake -S . -B build
make -C build

OR if you prefer the classic way.

mkdir build
cd build
cmake ..
make

This will generate a binary for our project exercise. This can be run with this following command:

cd exercise
./exercise

Currently works on the following platforms:

  • Linux

Output:

Swapnil says hello
Value of i: 5
Original value: 5
New value: 10

You can find the complete output in the output file.

About

RLOS exercise 2 submission

Resources

License

Stars

Watchers

Forks