Skip to contents

Say hello

Usage

hello(who = c("world", "tilt"))

Arguments

who

A valid string.

Value

A string.

Examples

hello()
#> hello world

hello("tilt")
#> hello tilt

# Errors
try(hello("invalid"))
#> Error in match.arg(who) : 'arg' should be one of “world”, “tilt”