-
Notifications
You must be signed in to change notification settings - Fork 4
/
02_flags.go
44 lines (38 loc) · 1.24 KB
/
02_flags.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Seriál "Programovací jazyk Go"
// https://www.root.cz/serialy/programovaci-jazyk-go/
//
// Desátá část
// Užitečné balíčky pro každodenní použití Go (2), porovnání výkonnosti Go s céčkem
// https://www.root.cz/clanky/uzitecne-balicky-pro-kazdodenni-pouziti-go-2-porovnani-vykonnosti-go-s-ceckem/
//
// Repositář:
// https://github.com/tisnik/go-root/
//
// Seznam demonstračních příkladů z desáté části:
// https://github.com/tisnik/go-root/blob/master/article_10/README.md
//
// Demonstrační příklad číslo 2:
// Vylepšené přečtení argumentů předaných na příkazovém řádku.
//
// Dokumentace ve stylu "literate programming":
// https://tisnik.github.io/go-root/article_10/02_flags.html
package main
import (
"flag"
"fmt"
)
func main() {
var width int
var height int
var aa bool
var output string
flag.IntVar(&width, "width", 0, "image width")
flag.IntVar(&height, "height", 0, "image height")
flag.BoolVar(&aa, "aa", false, "enable antialiasing")
flag.StringVar(&output, "output", "", "output file name")
flag.Parse()
fmt.Printf("width: %d\n", width)
fmt.Printf("height: %d\n", height)
fmt.Printf("antialiasing: %t\n", aa)
fmt.Printf("output file name: %s\n", output)
}