Nothing
# fmt: skip file
#' A function for foo-ing three numbers.
#'
#' @param x The first param
#' @param y The second param
#' @param z Take a guess
#' @returns The result of x %foo% y %foo% z.
has_roxygen_comments <- function(x, y, z = pi - 3.14) {
super_secret_code()
}
#' A function for foo-ing three numbers.
#'
#' @param x The first param
#' @param y The second param
#' @param z Take a guess
#' @returns The result of x %foo% y %foo% z.
indented_comments <- function(x, y, z = pi - 3.14) {
super_secret_code()
}
no_roxygen_comments <- function(i, j, k = pi - 3.14) {
super_secret_code()
}
no_srcfile <- eval(quote(
#' A function for foo-ing three numbers.
function(a, b, c = pi - 3.14) {
super_secret_code()
}
))
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.