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