A photo of Mitesh Shah

Mitesh Shah

Linux Expert | Automation Enthusiast | Security Consultant

Email Skype Github Twitter Resume Hire Me Keybase LinkedIn Stackoverflow


Install/Setup & Run simple program in Golang

Overview

Install & Setup Golang

$ brew install golang
$ go version
go version go1.20.3 darwin/amd64
package main
import "fmt"
func main() {
	fmt.Println("Hello, 世界")
}
$ go run hello.go                       
Hello, 世界




Post Navigation