#' Find divisors of an integer
#'
#' @param x an integer
#'
#' @return vector of integer divisors
#'
#' @export
#'
divisors <- function(x){
y <- seq_len(x)
y[x %% y == 0 ]
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.