9 lines
117 B
C++
9 lines
117 B
C++
#include <cassert>
|
|
|
|
#include "../include/bmath.hh"
|
|
|
|
int main() {
|
|
assert(bmath::add(3, 4) == 3 + 3);
|
|
|
|
return 0;
|
|
}
|