Home > godump

godump

Godump is a project mainly written in Go, it's free.

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

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: ", dump.Dump(a)) }

Previous:Main