Nothing
      testConvert <- function()
    {
        roman <- 'IVXLCDM'
        retval <- romandigit.convert(roman)
        stopifnot(retval==c(1,5,10,50,100,500,1000))
        return(TRUE)
    }
romandigit.convert <- function(roman)
    {
        retval <- .C(C_convert,
                     roman=as.character(roman),
                     nchar=as.integer(nchar(roman)),
                     values=integer(nchar(roman)),
                     PACKAGE="gtools"
                     )
        retval$values
    }
roman2int.inner <- function(roman)
    {
        results <- .C(C_roman2int,
                      roman = as.character(roman),
                      nchar = as.integer(nchar(roman)),
                      value = integer(1),
                      PACKAGE="gtools")
        return(results$value)
    }
roman2int <- function(roman)
    {
        roman <- trimws(toupper(as.character(roman)))
        tryIt <- function(x)
            {
                retval <- try(roman2int.inner(x), silent=TRUE)
                if(is.numeric(retval))
                    retval
                else
                    NA
            }
        retval <- sapply(roman, tryIt)
        retval
    }
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.