mirror of
https://gitee.com/johng/gf
synced 2026-06-21 07:57:36 +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",
|
|
})
|
|
}
|