Hello world is first stepping stone while learning any new computer language. Writing hello world in go was very exciting for me as I tried my hand for the first time in systems programming language
Code block:
package main
import "fmt"
func main() {
fmt.Println("hello world")
}
As easy as it looks to me Golang felt like the best gateway to systems programming