testing-spring-2024/src/lib.cpp
Kristofers Solo 6ace621748 refactor: make filenames consistent
Use cpp header files
2024-03-10 18:22:55 +02:00

14 lines
170 B
C++

#include "lib.hh"
#include "prep/prep.hh"
#include <iostream>
void run() {
std::cout << add(2, 2) << std::endl;
}
int functionToTest(int a) {
return a * 2;
}