OILS / _gen / mycpp / examples / pea_hello.pea.cc View on Github | oils.pub

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