godump icon indicating copy to clipboard operation
godump copied to clipboard

Go library to dump variables and data structures.

Results 2 godump issues
Sort by recently updated
recently updated
newest added

``` type NamedType int func main() { err := godump.Dump(NamedType(0)) if err != nil { panic(err) } } ```

Hi! Looks like right now we are showing the addresses of pointers. ``` Pointer: *int:0x0000a4010 ``` IMO it would be better to do something like: ``` Pointer: *int:&55644133 ``` thoughts?