Files
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