Nothing
# is gcc there?
Sys.which("gcc")
## gcc
## "/usr/bin/gcc"
Does engine = 'c'
work?
void square(double *x) {
*x = *x * *x;
}
Test the square()
function:
.C("square", 9)
## [[1]]
## [1] 81
.C("square", 123)
## [[1]]
## [1] 15129
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.