Update README.md

This commit is contained in:
Alexander 2013-07-23 17:17:26 +08:00
parent a29aaf2879
commit cd365a2e94

View File

@ -136,9 +136,9 @@ app.Action = func(c *cli.Context) {
name = c.Args()[0]
}
if c.String("lang") == "spanish" {
println("Hola", c.Args()[0])
println("Hola", name)
} else {
println("Hello", c.Args()[0])
println("Hello", name)
}
}
...