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

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