diff --git a/examples/go-v123/go.mod b/examples/go-v123/go.mod new file mode 100644 index 000000000..f2780549b --- /dev/null +++ b/examples/go-v123/go.mod @@ -0,0 +1,3 @@ +module hello-world + +go 1.23 diff --git a/examples/go-v123/main.go b/examples/go-v123/main.go new file mode 100644 index 000000000..9ca930265 --- /dev/null +++ b/examples/go-v123/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello from Go!") +}