diff --git a/R/my_first_fcn.R b/R/my_first_fcn.R new file mode 100644 index 0000000000..d156914699 --- /dev/null +++ b/R/my_first_fcn.R @@ -0,0 +1,7 @@ +#' My first admiral function +#' +#' @return A welcome message +#' @export +my_first_fcn <- function() { + "Welcome to the admiral family!" +}