问题 I'm guessing this is an easy question, but I'm new to Cpp, and am stuck. I've created a function in R, using Rcpp and: // [[Rcpp::export]] I can call the function in R and it works as intended. Let's call it F1 . Next, I want to create another function, F2 , using Rcpp which calls the first function. I use standard function call language (i.e., F1(arguments)) , and it compiles fine through R when I use sourceCpp() . But when I try to call F2 in R, I get: Error in .Primitive(".Call")( and F2