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,23 @@
// 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