From 5bb6abc6e8244900d55ece2b3beeb253bc6f427c Mon Sep 17 00:00:00 2001 From: gerasimov Date: Mon, 8 Oct 2018 22:47:17 +0300 Subject: [PATCH] add golang ru lang --- Golang/hello-world.ru.go | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Golang/hello-world.ru.go diff --git a/Golang/hello-world.ru.go b/Golang/hello-world.ru.go new file mode 100644 index 000000000..88891ab4f --- /dev/null +++ b/Golang/hello-world.ru.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Привет, мир!") +}