gobyexample/094-users/094-users.go
2012-09-23 12:11:48 -04:00

11 lines
150 B
Go

package main
import ("fmt"; "os/user")
func main() {
me, _ := user.Current()
fmt.Println(me)
root, _ := user.Lookup("root")
fmt.Println(root)
}