#' A Test Function
#'
#' This function allows to test my package.
#' @param try Ciao Zoe, sta bene? Defaults to TRUE.
#' @return string of characters
#' @keywords test
#' @export
#' @examples c <- test_function(TRUE), print(c) / c <-test_function(FALSE), print(c)
#' test_fun()
test_fun <- function(try=TRUE){
if(try==TRUE){
print("Ciao alles klar? tipp eifach ned FALSE")
}
else {
print("WHY THE HELL YOU TYPE FALSE?!?")
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.