Y
Hacker News
new
|
ask
|
show
|
jobs
by
p6steve
1976 days ago
'use Inline::XXX;' gives raku coders access to Perl5 (CPAN) and python modules
1 comments
lizmat
1969 days ago
Actually, it is even simpler than that. If you have the Inline::Perl5 module
installed
, then the only thing you need to do to load a Perl module, is to use the :from<Perl5> adverb in the -use- statement, e.g.:
use DBI:from<Perl5>;
link