14:33b8f428bacb | 15:33da84af4bba |
---|---|
196 // Prints the formatting result to the console | 196 // Prints the formatting result to the console |
197 // | 197 // |
198 template<typename... argtypes> | 198 template<typename... argtypes> |
199 void print (const String& fmtstr, const argtypes&... args) | 199 void print (const String& fmtstr, const argtypes&... args) |
200 { | 200 { |
201 print_to_console (format (fmtstr, args...); | 201 print_to_console (format (fmtstr, args...)); |
202 } | 202 } |