# README

flags example

To run the example, type:

go run main.go

Optionally, override default values of flags through the following CLI options:

--ep-string <string-value>
--ep-int <integer-value>
--ep-int64 <64b-integer-value>
--ep-uint <unsigned-integer-value>
--ep-uint64 <unsigned-64b-integer-value>
--ep-bool <boolean-value>
--ep-duration <time-duration>

# Functions

ParseFlags parses the command-line flags.
PrintFlags shows the runtime values of CLI flags.
RegisterFlags contains examples of how to register flags of various types.