Add exercises

This commit is contained in:
Alex Hirsch
2020-10-06 12:34:06 +02:00
parent 3ef3f4957e
commit a0d503e8da
14 changed files with 163 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
#include "foo.hpp"
#include <iostream>
void foo()
{
std::cout << "Function foo called" << std::endl;
}

View File

@@ -0,0 +1,6 @@
#ifndef UIBK_703807_EX01_TASK3_FOO_HPP
#define UIBK_703807_EX01_TASK3_FOO_HPP
void foo();
#endif // UIBK_703807_EX01_TASK3_FOO_HPP