What's the purpose of use statement below which I stumbled across in some Perl 6 module?
use CGI:from<perl5>;
...
...
The rest of the code is just mundane usage of the Perl 5 CGI module, as far as I can tell.
Is the ":from" suffix used to invoke some kind of a Perl 5 compatibility layer. Can't seem to find any documentation about it.
Look at the perl6 Synopsis 11: Modules:
So indeed, it's a scheme to support "other languages", perl5 in this instance.