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