another WSL matching fix
[webi-installers/.git] / golang / package.yash
1 # title: Go
2 # homepage: https://golang.org
3 # tagline: |
4 #   Go makes it easy to build simple, reliable, and efficient software.
5 # description: |
6 #   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_](https://www.python.org/dev/peps/pep-0020/), you'll [love](https://go-proverbs.github.io/) [Go](https://www.youtube.com/watch?v=PAAkCSZUG1c).
7 # examples: |
8 #   ```bash
9 #   mkdir -p hello/
10 #   pushd hello/
11 #   ```
12 #
13 #   ```bash
14 #   cat << EOF >> main.go
15 #   package main
16 #
17 #   import (
18 #     "fmt"
19 #   )
20 #
21 #   func main () {
22 #     fmt.Println("Hello, World!")
23 #   }
24 #   EOF
25 #   ```
26 #
27 #   ```bash
28 #   go fmt ./...
29 #   go build .
30 #   ./hello
31 #   > Hello, World!
32 #   ```
33
34 END