#' Is Odd Test
#'
#' @param x numeric
#'
#' @return
#' @export
#'
#' @examples
#' isOdd(1)
#' isOdd(2)
#' isOdd(1.2)
isOdd <- function(x) {
x %% 2 == 1
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.