🎉」 init: hello world !

This commit is contained in:
2025-08-15 15:11:43 +02:00
commit c9ae5bee78
13 changed files with 559 additions and 0 deletions

12
ex02/main.cpp Normal file
View File

@@ -0,0 +1,12 @@
#include "Base.hpp"
#include <iostream>
int main()
{
Base *base = generate();
std::cout << "pointer idendifer : ";
identify(base);
std::cout << "ref idendifer : ";
identify(*base);
delete base;
}