cpplab/app/math.cpp
2023-06-17 20:06:07 +01:00

12 lines
243 B
C++

#include "../src/bmath/math.hpp"
#include "../src/bmath/complex.hpp"
#include <iostream>
using namespace BMath;
using namespace std;
int main(void) {
int answer = ((Complex *)0)->answer();
cout << "The secret is: " << answer << endl;
}