Skip to content
/ dump.go Public
forked from wingyplus/dump.go

dump type of data (fork project from googlecode)

Notifications You must be signed in to change notification settings

ZyberM/dump.go

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dump.go Version 0.1

this project is fork repository from googlecode

  • dump, an utility to dump Go variables, similar to PHP's var_dump

Example

dump.Dump(&[][]int{[]int{1, 2, 3}, []int{1, 2, 3}, []int{1, 2, 3}})

Outputs:

&[][]int (len=3) {
  []int (len=3) {
    (int) 1,
    (int) 2,
    (int) 3
  },
  <[]int []int>,
  <[]int []int>
}

Installation

Follow this command:

$ make
$ make install

About

dump type of data (fork project from googlecode)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published