From 3dc8259d50f9808fb595e548b869a852e8762723 Mon Sep 17 00:00:00 2001 From: Archie Fox Date: Thu, 30 Jan 2025 12:16:55 +0300 Subject: [PATCH] add package hello --- dev-fox.ru/fox/headfirstgo/hello/hello.go | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 dev-fox.ru/fox/headfirstgo/hello/hello.go diff --git a/dev-fox.ru/fox/headfirstgo/hello/hello.go b/dev-fox.ru/fox/headfirstgo/hello/hello.go new file mode 100644 index 0000000..219a391 --- /dev/null +++ b/dev-fox.ru/fox/headfirstgo/hello/hello.go @@ -0,0 +1,7 @@ +package hello + +import "fmt" + +func main() { + fmt.Println("Hello Golang developers!") +}