Go concepts
The capital the first word, go run, environment, bin, src, go build, creating virtual env in go, why go (garbage collection), compilation, go offline documentation,
// Some code
package main
import(
"fmt"
)
func main(){
fmt.Println("hello, Go")
}// Some code
package main
import "fmt"
import(
"math\rand"
"github.com/gorilla/mux"
)Last updated