This function is a test function that returns the name Leo.

leo()

Value

A character(1) with the words Leo.

Examples

## Print the name Leo
leo()
#> [1] "leo"

## Capitalize the first letter
gsub("l", "L", leo())
#> [1] "Leo"