Logo

Programming-Idioms

  • Python
  • Go

Idiom #245 Print value of custom type

Print the value of object x having custom type T, for log or debug.

import fmt;
fmt.Println(x)

Will be more relevant if T implements fmt.Stringer
print(x)
#include <iostream>
std::cout << x;

New implementation...
< >
花大喵