mirror of
https://gitee.com/johng/gf
synced 2026-06-25 01:05:41 +08:00
12 lines
133 B
Go
12 lines
133 B
Go
package main
|
|
|
|
import (
|
|
"github.com/gogf/gf/util/gutil"
|
|
)
|
|
|
|
func main() {
|
|
gutil.Dump(map[interface{}]interface{}{
|
|
1: "john",
|
|
})
|
|
}
|