A toy function that returns a greeting message. Used only to give this package something plain to document and link to.
greet(name = "world", loud = FALSE)
name
loud
TRUE
A character string with the greeting.
library("alttip") greet("world")
[1] "Hello, world!"
greet("world", loud = TRUE)
[1] "HELLO, WORLD!"