1 | #include "TopLevel/module1.h" |
---|---|
2 | #include "TopLevel/module2.h" |
3 | |
4 | int main() { |
5 | func(x: 1); |
6 | func(x: 2, y: 3); |
7 | |
8 | return 0; |
9 | } |
10 |
1 | #include "TopLevel/module1.h" |
---|---|
2 | #include "TopLevel/module2.h" |
3 | |
4 | int main() { |
5 | func(x: 1); |
6 | func(x: 2, y: 3); |
7 | |
8 | return 0; |
9 | } |
10 |