R/source_echo.R

Defines functions source_echo

Documented in source_echo

#' Source a file and print filepath
#'
#' @param filepath path to R file
#' 
#'
#' @return
#'
#' @examples
#' 
#'
#' @export
source_echo <- 
  function(filepath) {
  
  print(filepath)
  source(filepath)
  
}
ktbaek/c19dk documentation built on March 26, 2022, 1:47 a.m.