Files
42_INT_09_piscine_cpp/d07/ex02/headers/Print.hpp
2022-03-11 01:54:16 +01:00

13 lines
169 B
C++

#ifndef PRINT_HPP
# define PRINT_HPP
# include <iostream>
# include <string>
template< typename T >
void Print(T const & e) {
std::cout << "[" << e << "]";
}
#endif