add hello world

main
wangyang 2023-02-28 10:59:13 +08:00
parent 8d6dad8e3a
commit e99e49c826
1 changed files with 7 additions and 0 deletions

7
tmp.go Normal file
View File

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hello World!")
}