mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-03-03 18:00:18 +00:00
812 B
812 B
title, homepage, tagline
| title | homepage | tagline |
|---|---|---|
| Go | https://golang.org | Go makes it easy to build simple, reliable, and efficient software. |
To update or switch versions, run webi golang@stable (or @v1.16, @beta,
etc).
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!