library: strconv

This commit is contained in:
xushiwei
2024-06-20 11:05:43 +08:00
parent 5d957a6b7c
commit f7d7f81c49
5 changed files with 51 additions and 12 deletions

7
_demo/strconv/strconv.go Normal file
View File

@@ -0,0 +1,7 @@
package main
import "strconv"
func main() {
println(strconv.Itoa(-123))
}