From 77c79dfef2fccf00d3a54b7176d9ad582813356e Mon Sep 17 00:00:00 2001 From: muarachmann Date: Thu, 11 Oct 2018 04:48:04 +0100 Subject: [PATCH] Hello world code in the go language --- code/helloworld.go | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 code/helloworld.go diff --git a/code/helloworld.go b/code/helloworld.go new file mode 100644 index 0000000..7645697 --- /dev/null +++ b/code/helloworld.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main(){ + fmt.Printf("Hello, world.") + }