This commit is contained in:
2026-02-23 23:02:07 +01:00
parent baa00b7718
commit 77ef8a0f8c
2 changed files with 10 additions and 0 deletions

3
hello/go.mod Normal file
View File

@@ -0,0 +1,3 @@
module example/hello
go 1.25.6

7
hello/hello.go Normal file
View File

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