Get Environment Variable
Examples in
Go
package main
import (
"fmt"
"os"
)
func main() {
fmt.Println("FOO:", os.Getenv("FOO"))
}