renumber again

This commit is contained in:
Mark McGranaghan
2012-09-23 13:29:28 -07:00
parent 1ef0ead109
commit ebe6383f98
118 changed files with 2 additions and 2 deletions

11
074-users/users.go Normal file
View File

@@ -0,0 +1,11 @@
package main
import "fmt"
import "os/user"
func main() {
me, _ := user.Current()
fmt.Println(me)
root, _ := user.Lookup("root")
fmt.Println(root)
}

3
074-users/users.sh Normal file
View File

@@ -0,0 +1,3 @@
$ go run users.go
&{501 20 mmcgrana Mark McGranaghan /Users/mmcgrana}
&{0 0 root System Administrator /var/root}