R/hello.R
hello.Rd
Say hello
hello(who = c("world", "tilt"))
A valid string.
A string.
hello() #> hello world hello("tilt") #> hello tilt # Errors try(hello("invalid")) #> Error in match.arg(who) : 'arg' should be one of “world”, “tilt”