Files
llgo/_cmptest/strconv/strconv.go
2024-07-16 22:36:38 +08:00

13 lines
152 B
Go

package main
import (
"fmt"
"strconv"
"strings"
)
func main() {
fmt.Println(strconv.Itoa(-123))
fmt.Println(strings.Split("abc,def,123", ","))
}