#' Modulus Function
#' @description This function computes modulus of two numbers.
#' @param a1
#' @param b1
#'
#' @return The modulo.
#' @export
#'
#' @examples
#' #Compute the mod of 10 with 5.
#' mod(10,5)
#' \dontrun{
#' mod(6,3)
#' }
#'
mod <- function(a1,b1){
print(paste0("a1 modulo b1 is ",a1%%b1))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.