RosettaCodeData/Task/Hostname/Go/hostname.go

11 lines
83 B
Go

package main
import (
"fmt"
"os"
)
func main() {
fmt.Println(os.Hostname())
}