cmpsc330hw4/io.cpp
Sandipsinh Rathod 273662fde0 cleanup
2024-11-19 19:11:06 -05:00

8 lines
104 B
C++

#include <iostream>
#include <string>
template<typename T>
void print(T val) {
std::cout << val;
}