Nothing
# PRINTFUNCTIONENTRYINFORMATION
#
# Print function name inclusive parameter values (if verbose = TRUE)
#
# Author: stefanhaunsberger
###############################################################################
printFunctionEntryInformation = function (fun, match_call) {
writeLines("================================================");
writeLines(sprintf("%s(): Start ...", fun[1]));
writeLines("Call details:");
print(match_call);
writeLines("------------------------------------------");
return(as.character(fun[1]));
}
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.