From 3f341e648c513c96c454346b49b766868a479e25 Mon Sep 17 00:00:00 2001 From: Igor V Belousov Date: Tue, 8 Jun 2021 14:25:29 +0300 Subject: [PATCH] Chapter 1 - Hello World --- ch1/hello_world.go | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 ch1/hello_world.go diff --git a/ch1/hello_world.go b/ch1/hello_world.go new file mode 100644 index 0000000..5114262 --- /dev/null +++ b/ch1/hello_world.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello, мир!") +}