7 lines
125 B

#include <io/debug.h>
namespace io {
void debug(std::string msg) {
std::cout << "DEBUG: " << msg << std::endl;;
}
}