:woeisthanos:

This commit is contained in:
2024-03-25 20:54:15 -05:00
parent da482d8c6d
commit af8b33d561
94 changed files with 2429 additions and 6287 deletions

View File

@@ -0,0 +1,9 @@
#include <iostream>
#import "structures.h"
int main() {
Employee *emp1 = new Employee("Jeff Bezos", 1);
std::cout << emp1->toString();
Employee** employeeArray;
populate(employeeArray, 2, 3);
return 0;
}