🎉」 init: hello world !

This commit is contained in:
2025-08-02 13:51:40 +02:00
commit 224ed0cf99
44 changed files with 2108 additions and 0 deletions

18
ex03/Intern.hpp Normal file
View File

@@ -0,0 +1,18 @@
#pragma once
#include <string>
#include <iostream>
class AForm;
class Intern {
public:
Intern(void);
Intern(const Intern &);
~Intern(void);
Intern &operator=(const Intern &);
AForm *makeForm(std::string, std::string) const;
};