my first ever go app

This commit is contained in:
Win 2024-05-22 20:28:37 +07:00
parent a6b06035e3
commit 20debe15f4
1 changed files with 7 additions and 0 deletions

7
hello/hello.go Normal file
View File

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