library/demo: log

This commit is contained in:
xushiwei
2024-07-08 15:17:08 +08:00
parent 8db3ccce2e
commit 1d4cba9180
9 changed files with 268 additions and 79 deletions

9
_demo/logdemo/log.go Normal file
View File

@@ -0,0 +1,9 @@
package main
import (
"log"
)
func main() {
log.Println("Hello")
}