https://github.com/avelino/awesome-go
https://play.golang.org/
https://gopherize.me
statically typed language
memory safe
package main
import "fmt"
func main() {
fmt.Println("Hello world")
var test = "variable"
fmt.Println(test)
}
// single line comment
/*
multi line comment
*/