disp(X)
displays the value of variable X
without printing the variable name. This is a wrapper around base::cat()
that includes a breakline in the end.
Examples
A <- c(15, 150)
S <- 'Hello World.'
disp(A)
#> 15 150
disp(S)
#> Hello World.
disp(X)
displays the value of variable X
without printing the variable name. This is a wrapper around base::cat()
that includes a breakline in the end.
A <- c(15, 150)
S <- 'Hello World.'
disp(A)
#> 15 150
disp(S)
#> Hello World.