Examples (7)
Execute a Raku script
raku path/to/script.rakuExecute a single Raku command
raku -e "command"Check syntax only (runs BEGIN and CHECK blocks)
raku -c path/to/script.rakuStart a REPL (interactive shell)
Load a module before running the program
raku -M module_name path/to/script.rakuAdd a path to the module search path
raku -I path/to/module_directory path/to/script.rakuExtract and display documentation from a script
raku --doc path/to/script.rakumade by @shridhargupta | data from tldr-pages