Is the a way to use Perl 5 modules from CPAN from Rakudo Perl 6?

For example, how can I use the venerable Perl 5 module, CGI, which hasn't been ported yet, in Perl 6.

Update:

And what this funky code from some early Perl 6 module:

use CGI:from<perl5>;

Is the ":from" directive used to evoke some kind of a Perl 5 compatibility layer. Can't seem to find any documentation about it.

link|improve this question

3  
Port it. (Sorry.) – reinierpost Feb 7 at 9:16
1  
I understand CGI is just a example, but for modern web development you could look Dancer for Perl6 – wk. Feb 7 at 13:10
feedback

1 Answer

There is blizkost project that aims to use of perl5 code from Rakudo/Parrot. However it is AFAIK in quite early stage of development and probably not usable for real code.

link|improve this answer
The last commit was more than a year ago. – Brad Gilbert Feb 7 at 22:18
@BradGilbert - yeah, thats why I put the warning there. However this is only project I know of that aims at using perl5 in parrot. – bvr Feb 8 at 6:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.