Mark McGranaghan 434392e67c index work
2012-09-23 14:54:59 -07:00

12 lines
166 B
Go

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