R/write_out.R

#' write progress to the screen
#'
#' @param text_to_cat xxxPARAMxxx
#'
#' @return NULL xxxRETURNxxx
#' @importFrom utils capture.output flush.console
#'
write_out <-
function# write_progress to the screen
###
(text_to_cat
###
)
{
  cat(text_to_cat);
  utils::capture.output(expr = cat(text_to_cat), append=TRUE, file="process_info.txt");
  utils::flush.console();

  invisible(NULL);
  ### NULL
} # write_out()
erikerhardt/isogasex documentation built on July 16, 2019, 5:25 a.m.