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

11 lines
97 B
Go
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
package main
import (
"fmt"
"os"
)
func main() {
fmt.Println(os.Getenv("SHELL"))
}