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