cat0 <- function(...) {
cat(..., "\n", sep = "")
}
int_greater_zero <- function(x) {
if (!(x > 0 && length(x) == 1 && is.numeric(x) && floor(x) == x)) {
return(FALSE)
}
return(TRUE)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.