From 48969668516fea27b4526ecdcb1b091851fee983 Mon Sep 17 00:00:00 2001 From: GOTO Date: Thu, 17 Oct 2024 02:36:55 +0200 Subject: [PATCH] #1839 Roxygen skelton inserted --- R/my_first_fcn.R | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/R/my_first_fcn.R b/R/my_first_fcn.R index 17cd88881..f51cf6a1d 100644 --- a/R/my_first_fcn.R +++ b/R/my_first_fcn.R @@ -1,3 +1,13 @@ + +#' my_first_fcn +#' +#' @return +#' This function returns the Character "Welcome to the admiral family!". +#' +#' @export +#' +#' @examples +#' my_first_fcn() ## returns "Welcome to the admiral family!" my_first_fcn <- function() { print("Welcome to the admiral family!") }