Nothing
#' @title Display the value of a variable
#' @description \code{disp(X)} displays the value of variable \code{X}
#' without printing the variable name. This is a wrapper around `base::cat()`
#' that includes a breakline in the end.
#' @param X variable
#' @return The value of \code{X}
#' @author Waldir Leoncio
#' @export
#' @examples
#' A <- c(15, 150)
#' S <- 'Hello World.'
#' disp(A)
#' disp(S)
disp <- function(X) cat(X, "\n")
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.