mirror of
https://gitee.com/johng/gf
synced 2026-06-30 11:05:11 +08:00
25 lines
284 B
Go
25 lines
284 B
Go
package main
|
|
|
|
import (
|
|
<<<<<<< HEAD
|
|
"fmt"
|
|
)
|
|
|
|
func main() {
|
|
var i float64 = 0
|
|
for index := 0; index < 10; index++ {
|
|
i += 0.1
|
|
fmt.Println(i)
|
|
}
|
|
}
|
|
=======
|
|
"github.com/gogf/gf/g/encoding/gjson"
|
|
)
|
|
|
|
func main() {
|
|
j := gjson.New(`[1,2,3]`)
|
|
j.Remove("1")
|
|
j.Dump()
|
|
}
|
|
>>>>>>> master
|