blob: 3deeff07e4e6e98dd7862592d4d880e300095294 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifdef MSVC_MODULES
import std.core;
#else
import std;
#endif
import my_module;
using namespace std;
int main(int argc, char** argv) {
cout << my_sum(1, 1) << endl;
}
|