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