Initial commit. Base Type factory implementation

This commit is contained in:
DH
2026-02-27 18:29:26 -05:00
parent 074006a3e4
commit 684eb891f7
4 changed files with 207 additions and 0 deletions

8
typefactory/main.cpp Normal file
View File

@@ -0,0 +1,8 @@
#include <iostream>
using namespace std;
int main() {
cout << "Hello World!" << endl;
return 0;
}