Skip to content

Commit

Permalink
1839 dummy function created
Browse files Browse the repository at this point in the history
  • Loading branch information
Sreeguna committed Oct 31, 2023
1 parent 9cb4316 commit 8042602
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions R/my_first_fcn.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
#' Derive Extension Example
#'
#' Says hello admiral
#'
#' @param hw TRUE or FALSE
#'
#' @author author sc460144
#'
#' @details welcome to admiral family message
#'
#' @return Happy Message
#'
#' @family
#'
#' @keywords
#'
#' @export
#'
#' @examples
#' hello_admiral(hw = FALSE)
hello_admiral <- function(hw = TRUE) {
if (hw) {
message("Welcome to the admiral family!")
} else {
message("Welcome to the admiral family!")
}
}

0 comments on commit 8042602

Please sign in to comment.