diff --git a/hello/go.mod b/hello/go.mod new file mode 100644 index 0000000..7a27efa --- /dev/null +++ b/hello/go.mod @@ -0,0 +1,3 @@ +module c.infdj.com/GO/courses_golang/hello + +go 1.17 diff --git a/hello/hello.go b/hello/hello.go new file mode 100644 index 0000000..91cca4f --- /dev/null +++ b/hello/hello.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello, world.") +}