Nothing
#' Perl is a highly capable, feature-rich programming language with over 36
#' years of development.
#'
#' @param ... `r rd_dots("perl")`.
#' @param perl `r rd_cmd("perl")`.
#' @seealso
#' - <https://www.perl.org/>
#'
#' `r rd_seealso()`
#' @inherit exec return
#' @family command
#' @export
perl <- make_command(
"perl",
function(..., perl = NULL) {
assert_string(perl, allow_empty = FALSE, allow_null = TRUE)
Perl$new(cmd = perl, ...)
}
)
Perl <- R6Class(
"Perl",
inherit = Command,
private = list(
alias = function() "perl",
setup_help_params = function() "--help"
)
)
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.