Does Perl 6 have a taint mode?

Viewed 212

Perl 5 supports taint mode with the -T switch. The script will internally mark any value that is retrieved from a source external to the script as tainted which should be untainted. Does Perl 6 support such an option?

2 Answers
Related