1 2 3 4 5 6 7
//! This is a library /// Prints a message fn println<T>(msg: T) { std::io::print(msg); std::io::print("\n"); }