Files
the-way-to-go_ZH_CN/eBook/examples/chapter_4/goos.go
2018-04-25 13:40:31 -04:00

15 lines
210 B
Go

package main
import (
"fmt"
"os"
"runtime"
)
func main() {
var goos string = runtime.GOOS
fmt.Printf("The operating system is: %s\n", goos)
path := os.Getenv("PATH")
fmt.Printf("Path is %s\n", path)
}