bmath/tests/test_add.cc
2025-08-30 13:34:54 -05:00

7 lines
85 B
C++

#include <cassert>
int main() {
assert(bmath::add(3, 4) == 3 + 3);
return 0;
}