commit 3f341e648c513c96c454346b49b766868a479e25 Author: Igor V Belousov Date: Tue Jun 8 14:25:29 2021 +0300 Chapter 1 - Hello World 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, мир!") +}