Files
llgo/_cmptest/strconv/strconv.go

13 lines
152 B
Go
Raw Normal View History

2024-06-20 11:05:43 +08:00
package main
2024-07-16 22:36:38 +08:00
import (
"fmt"
"strconv"
"strings"
)
2024-06-20 11:05:43 +08:00
func main() {
2024-07-16 22:36:38 +08:00
fmt.Println(strconv.Itoa(-123))
fmt.Println(strings.Split("abc,def,123", ","))
2024-06-20 11:05:43 +08:00
}