diff --git a/hello/go.mod b/hello/go.mod new file mode 100644 index 0000000..64acfaa --- /dev/null +++ b/hello/go.mod @@ -0,0 +1,3 @@ +module example/hello + +go 1.25.6 diff --git a/hello/hello.go b/hello/hello.go new file mode 100644 index 0000000..ce19450 --- /dev/null +++ b/hello/hello.go @@ -0,0 +1,7 @@ +package main +import "fmt" + +func main() { + fmt.Println("Hello World!") +} +