Nothing
#' check tokens
#' @param tokens the tokens
#' @param expected as expected
#' @export
check.tokens <- function(tokens, expected)
{
nt <- length(tokens)
ne <- length(expected)
if (nt != ne) stop("wrong number of words on line; got", nt, "but need", ne)
for (i in 1:nt) {
if (tokens[i] != expected[i]) stop("expecting word", expected[i], "but got", tokens[i])
}
}
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.