From 354983d93f81fab16da6c09c7945f38a9c8a66cf Mon Sep 17 00:00:00 2001 From: GO Date: Fri, 3 Sep 2021 08:58:05 +0000 Subject: [PATCH] hello --- hello/go.mod | 3 +++ hello/hello.go | 7 +++++++ 2 files changed, 10 insertions(+) create mode 100644 hello/go.mod create mode 100644 hello/hello.go 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.") +}