RosettaCodeData/Task/Environment-variables/Go/environment-variables-1.go

11 lines
97 B
Go
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
package main
import (
"fmt"
"os"
)
func main() {
fmt.Println(os.Getenv("SHELL"))
}