22 lines
236 B
C++
22 lines
236 B
C++
|
|
||
|
// Your First C++ Program
|
||
|
|
||
|
#include <iostream>
|
||
|
|
||
|
#include "main.h"
|
||
|
|
||
|
void print_foo() {
|
||
|
std::cout << "Foo";
|
||
|
}
|
||
|
|
||
|
#ifdef COMF_MAIN
|
||
|
|
||
|
int main() {
|
||
|
print_foo();
|
||
|
print_bar();
|
||
|
|
||
|
std::cout << "Hello World!";
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
#endif
|