Repository template for Assignment 1 of the Programming Languages course (Programmiersprachen). This assignment introduces the basics of C++, including setting up a build environment with CMake, writing and compiling simple programs, using git for version control, and running first unit tests with doctest.
mkdir build
cd build
cmake ..
make
# run the apps
cd source
./helloworld
./tests