Greet someone

Description

A toy function that returns a greeting message. Used only to give this package something plain to document and link to.

Usage

greet(name = "world", loud = FALSE)

Arguments

name A character string with the name to greet.
loud Logical. If TRUE, the greeting is shouted (all caps).

Value

A character string with the greeting.

Examples

library("alttip")

greet("world")
[1] "Hello, world!"
greet("world", loud = TRUE)
[1] "HELLO, WORLD!"