R/indent.R

Defines functions indent

Documented in indent

#' Creates an 'invisible' indent in the console
#' @param n number of tabs to return in console before the next line
#'
#' @export

indent <-
        function(n) {
                cat(
                paste(rep("\t", n), sep = "", collapse = "")
                )
        }
patelm9/typewriteR documentation built on Feb. 19, 2020, 1:41 p.m.