R/leo.R
leo.Rd
This function is a test function that returns the name Leo.
leo()
A character(1) with the words Leo.
character(1)
Leo
## Print the name Leo leo() #> [1] "leo" ## Capitalize the first letter gsub("l", "L", leo()) #> [1] "Leo"