7 lines
85 B
C++
7 lines
85 B
C++
#include <cassert>
|
|
|
|
int main() {
|
|
assert(bmath::add(3, 4) == 3 + 3);
|
|
|
|
return 0;
|
|
}
|