diff --git a/helloworld/go.mod b/helloworld/go.mod new file mode 100644 index 0000000..69451d9 --- /dev/null +++ b/helloworld/go.mod @@ -0,0 +1,3 @@ +module helloworld + +go 1.18 diff --git a/helloworld/helloworld b/helloworld/helloworld new file mode 100755 index 0000000..024ae23 Binary files /dev/null and b/helloworld/helloworld differ diff --git a/helloworld/main.go b/helloworld/main.go new file mode 100755 index 0000000..b7d2a32 --- /dev/null +++ b/helloworld/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello, World!") +}