Files
cpp06/ex02/main.cpp
2026-03-01 10:43:15 +01:00

23 lines
1004 B
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aortigos <aortigos@student.42malaga.com +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2026/03/01 10:26:57 by aortigos #+# #+# */
/* Updated: 2026/03/01 10:42:18 by aortigos ### ########.fr */
/* */
/* ************************************************************************** */
#include "Base/Base.hpp"
int main()
{
srand(time(NULL));
Base *b = generate();
identify(*b);
delete(b);
}