Files
vim-ale/golang
2020-10-21 19:18:52 +00:00
..
2020-09-07 16:20:37 +05:30
2020-10-21 19:18:52 +00:00
2020-07-09 11:46:17 +00:00
2020-06-16 10:45:54 +00:00

title, homepage, tagline
title homepage tagline
Go https://golang.org Go makes it easy to build simple, reliable, and efficient software.

Updating go

webi golang@stable

Use the @beta tag for pre-releases, or @x.y.z for a specific version.

Cheat Sheet

Go is designed, through and through, to make Software Engineering easy. It's fast, efficient, reliably, and something you can learn in a weekend. If you subscribe to The Zen of Python, you'll love > Go.

Hello World

mkdir -p hello/
pushd hello/
cat << EOF >> main.go
package main

import (
  "fmt"
)

func main () {
  fmt.Println("Hello, World!")
}
EOF
go fmt ./...
go build .
./hello
> Hello, World!