waf/demos/c++/main.cpp

10 lines
103 B
C++

#include <iostream>
extern void foo();
int main() {
foo();
printf("%s", HELLO_WORLD);
return 0;
}