TU-Programmieren_2/lab3/modules/iue-other/func.test.cpp
2025-04-09 10:22:44 +02:00

9 lines
132 B
C++

#include "iue-other/func.hpp"
#include <cassert> // assert
int main() {
assert(iue::other::header_only(5) == 10);
return 0;
}