d07 ex01 ok

This commit is contained in:
hugogogo
2022-03-10 19:12:00 +01:00
parent 3433fafd87
commit a38d7184e3
7 changed files with 198 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#ifndef PRINT_HPP
# define PRINT_HPP
# include <iostream>
# include <string>
template< typename T >
void Print(T const & e) {
std::cout << "[" << e << "]\n";
}
#endif