package
0.1.0-rc1
Repository: https://github.com/mycodesmells/golang-examples.git
Documentation: pkg.go.dev

# README

Bonus

Go 1.8

Adding value to ENV causes duplicates for given key:

$ USERNAME=Jane go run main.go 
Jane
Oscar

Go 1.9 RC1

Go 1.9 fixed that:

$ USERNAME=Jane go1.9rc1 run main.go 
Oscar