Nothing
message("TESTING: ASCII...")
library("R.oo")
## Display ASCII table
print(R.oo::ASCII)
idxs <- 1:255
str(idxs)
chars <- intToChar(idxs)
print(chars)
stopifnot(length(chars) == length(idxs))
idxs2 <- charToInt(chars)
str(idxs2)
stopifnot(length(idxs2) == length(chars))
stopifnot(identical(idxs2, idxs))
message("TESTING: ASCII...DONE")
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.