Demonstrates the custom converters by taking a Person from R, ageing
them by one year in C++, and returning the Person back to R.
Value
A list with the same name and an age incremented by one, produced by
the custom Rcpp::wrap() for Person.
Examples
birthday(list(name = "Jane", age = 30))
#> $name
#> [1] "Jane"
#>
#> $age
#> [1] 31
#>