diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..1511366 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module hello-project + +go 1.19 diff --git a/main.go b/main.go new file mode 100644 index 0000000..c2fbf9c --- /dev/null +++ b/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Printf("hello, world\n") +}