Hello world

This commit is contained in:
John Parkhurst 2026-03-15 23:34:04 -04:00
parent 8a4d4d161c
commit 6b798480a9
2 changed files with 10 additions and 0 deletions

3
go.mod Normal file
View file

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

7
main.go Normal file
View file

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