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!") +}