447e3d8c4b2914c7accbaafe279596a8670d0136
[webi-installers/.git] / golang / package.yash
1 # title: Go
2 # homepage: https://golang.org
3 # tagline: The Go Programming Language tools
4 # description: |
5 #   Go is an open source programming language that makes it easy to build simple, reliable, and efficient software.
6 # examples: |
7 #   ```bash
8 #   mkdir -p hello/
9 #   pushd hello/
10 #   ```
11 #
12 #   ```bash
13 #   cat << EOF >> main.go
14 #   package main
15 #
16 #   import (
17 #     "fmt"
18 #   )
19 #
20 #   func main () {
21 #     fmt.Println("Hello, World!")
22 #   }
23 #   EOF
24 #   ```
25 #
26 #   ```bash
27 #   go fmt ./...
28 #   go build .
29 #   ./hello
30 #   > Hello, World!
31 #   ```
32
33 END