Skip to content
/ godump Public

Dump Go variables to a string; similar to PHP's var_dump and Perl's Dumper. Forked from http://code.google.com/p/golang/

Notifications You must be signed in to change notification settings

abunner/godump

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 

Repository files navigation

Based off http://code.google.com/p/golang/

Serializes a Go variable to a nice debug string.

Usage:

import ("dump", "fmt")

func main(args[] string) {
  a := NewComplicatedValue()
  fmt.Print("a is:\n", dump.Dump(a))
}

About

Dump Go variables to a string; similar to PHP's var_dump and Perl's Dumper. Forked from http://code.google.com/p/golang/

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages