https://medium.com/@mgm06bm/its-not-just-a-helloworld-in-golang-788172029c71 The most easiest way to get started with any programming language is to write your first program to say Hello world. Lets see how you can write your first program in Go. First create a folder whatever you like and create a file main.go in it. mkdir go-tutorials/helloWorld cd go-tutorial/helloWorld && touch main.go