this project is fork repository from googlecode
- dump, an utility to dump Go variables, similar to PHP's var_dump
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>
}
Follow this command:
$ make
$ make install