Logo

Programming-Idioms

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

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.

print("verbose is ${args.contains("-v")}");
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.

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