First Program
Classic Hello World Program in Go
package main
import "fmt"
func main() {
fmt.Println("Hello World")
}go run hello.go
# => Hello Worldgo build hello.go
# => This should create an executable in same directory
# => hello hello.go./hello
# => Hello WorldLast updated