mirror of
https://github.com/jorenchik/testing-spring-2024.git
synced 2025-10-21 20:10:36 +00:00
14 lines
170 B
C++
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;
|
|
}
|