Skip to content

Instantly share code, notes, and snippets.

@subfuzion
Created May 31, 2016 23:15
Show Gist options
  • Save subfuzion/429b95748fa95021af772f5cbed65103 to your computer and use it in GitHub Desktop.
Save subfuzion/429b95748fa95021af772f5cbed65103 to your computer and use it in GitHub Desktop.
Go print map
for key, val := range env {
s := fmt.Sprintf("%s=%s\n", key, val)
w.Write([]byte(s))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment