#' Numerical concatenation
#'
#' @param ... Numerics
#'
#' @return The digits from input concatenated. Returned as numeric.
#' @export
#'
#' @examples
#'
#' RG::C(2,3,9)
#' C(1,5,1)
C <- function(...){
Load()
x <- as.numeric(paste0(...))
ifelse(length(x), x, 0)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.