Files
2022-03-10 19:12:00 +01:00

14 lines
172 B
C++

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