1 | #include "mycpp/runtime.h" |
2 | |
3 | namespace pea_hello { // forward declare |
4 | } |
5 | |
6 | |
7 | namespace pea_hello { // declare |
8 | |
9 | int main(List<BigStr*>* argv); |
10 | |
11 | } // declare namespace pea_hello |
12 | |
13 | namespace pea_hello { // define |
14 | |
15 | |
16 | int main(List<BigStr*>* argv) { |
17 | StackRoot _root0(&argv); |
18 | |
19 | return 42; |
20 | } |
21 | |
22 | } // define namespace pea_hello |
23 |