#' Gauss Easter Algorithm to calculate Easter dates
#'
#' @param years int.
#' @export
#'
#' @examples
#' gauss_easter_algorithm(2021)
gauss_easter_algorithm <- function(years) {
easter_dates <- as.Date(sapply(years, gauss_easter_algorithm_Cpp))
return(easter_dates)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.