This commit is contained in:
2025-09-30 13:35:04 +08:00
parent c4c2731e81
commit e5987a540b
3 changed files with 10 additions and 0 deletions

3
helloworld/go.mod Normal file
View File

@@ -0,0 +1,3 @@
module helloworld
go 1.18

BIN
helloworld/helloworld Executable file

Binary file not shown.

7
helloworld/main.go Executable file
View File

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