feat: 🔥 oh god

This commit is contained in:
David Bailey 2023-08-12 20:36:26 +02:00
parent cdb5492bfe
commit 3c7f48016d
30 changed files with 708 additions and 280 deletions

View file

@ -0,0 +1,22 @@
// 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