Nothing
## File Name: cxxfunction.copy.R
## File Version: 1.071
cxxfunction.copy <- function( cppfct, name )
{
require_namespace('inline')
g1 <- inline::getDynLib(cppfct)
cppname <- gsub( '\\.dll', '\\.cpp', g1[['path']] )
h1 <- readLines( cppname )
tempname <- g1[['name']]
h1 <- gsub( tempname, name, h1 )
h1 <- c( paste0( '// Code created: ', Sys.time() ), '', h1 )
name1 <- paste0( tolower(name), '.cpp' )
writeLines( h1, name1 )
crlrem( filename1=name1, filename2=name1 )
}
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.