#' Is this value even?
#'
#' Reveals if x is even, where x is a numeric value
#'
#' @param x numeric value
#'
#' @return boolean
#' @export
#'
#' @examples
is_even <- function(x) {
x %% 2 == 0
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.