I want to write some tutorials on Perl 6. For this I believe Rmarkdown would be of great help.
So I am trying to execute Perl 6 code within Rmarkdown docum
Perl 6
From the command prompt on windows, this works:
perl6 -e "say 'hello'"
but this fails:
perl6 -e 'say "hello"'
You have to use double quotes to quote arguments in the command prompt.