R/blankpkg_dummy.R

Defines functions blank_x

Documented in blank_x

#' Dummy placeholder function
#'
#' \Sexpr[results=rd, stage=render]{lifecycle::badge("experimental")}
#' This is a small dummy function to exemplify the
#' {roxygen} documentation, the automatic testing etc...
#'
#' @param input character string
#'
#' @return echo the input string
#' @export
#'
#' @examples
#' blank_x()
#'
#' blank_x("something else...")
blank_x <- function(input = "planceholder code"){
  return(input)
  }
k-hench/blankpkg documentation built on Dec. 21, 2021, 5:15 a.m.