| 23 | #include <Rcpp.h> // need to include the main Rcpp header file only |
| 24 | |
| 25 | int bar(int x) { // simple free function returning an int |
| 26 | return x*2; |
| 27 | } |
| 28 | |
| 29 | double foo(int x, double y) { // simple free function returning a double |
| 30 | return x * y; |
nothing calls this directly
no outgoing calls
no test coverage detected