12 lines
243 B
C++
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;
|
|
}
|