Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Go

Idiom #232 Read a command line boolean flag

Print "verbose is true" if the flag -v was passed to the program command line, "verbose is false" otherwise.

import "flag"
var verbose = flag.Bool("v", false, "verbose")
flag.Parse()
fmt.Println("verbose is", *verbose)

verbose has pointer type *bool.
Call Parse only once, after all flags are defined and before flags are read.
Flags must be passed before the non-flag arguments.
print("verbose is ${args.contains("-v")}");

New implementation...
< >
programming-idioms.org