How to print a map, struct or whatever in a readable way?
With PHP you can to this
echo \'\'; print_r($var); echo \'\';
\'; print_r($var); echo \'
fmt.Printf("%v", whatever)
In Go is like print_r(), var_dump(), var_export() in PHP. (The %v is the important part.)
%v
Good Luck