Skip to content

Instantly share code, notes, and snippets.

@jdx
Last active August 29, 2015 14:08
Show Gist options
  • Save jdx/d644deb0330ac51a91d5 to your computer and use it in GitHub Desktop.
Save jdx/d644deb0330ac51a91d5 to your computer and use it in GitHub Desktop.
foo
**bar**
```{r engine='Rcpp'}
#include <Rcpp.h>
// [[Rcpp::export]]
int fibonacci(const int x) {
if (x == 0 || x == 1) return(x);
return (fibonacci(x - 1)) + fibonacci(x - 2);
}
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment