0byt3m1n1
Path:
C:
/
Program Files
/
R
/
R-4.2.2
/
library
/
Rcpp
/
tinytest
/
testRcppClass
/
src
/
[
Home
]
File: rcpp_hello_world.cpp
#include "rcpp_hello_world.h" SEXP rcpp_hello_world_cpp(){ using namespace Rcpp ; CharacterVector x = CharacterVector::create( "foo", "bar" ) ; NumericVector y = NumericVector::create( 0.0, 1.0 ) ; List z = List::create( x, y ) ; return z ; }