patch: io, io/fs, os

This commit is contained in:
xushiwei
2024-06-19 22:21:44 +08:00
parent 6058b9851c
commit 3c0e321538
9 changed files with 614 additions and 6 deletions

11
cl/_testlibgo/os/in.go Normal file
View File

@@ -0,0 +1,11 @@
package main
import "os"
func main() {
wd, err := os.Getwd()
if err != nil {
panic(err)
}
println("cwd:", wd)
}