GO Reference: Go Introduction
Quick reference for Go Introduction.
GO Reference — Go Introduction
Quick summary of Go Introduction with syntax and example.
Syntax
package main
Example
package main
import "fmt"
func main(){
fmt.Println("Hello Go")
}