Re: importing code

2016-03-11 Thread Siavash
To specify the name indirectly: my $m = 'some-module'; require ::($m); On 2016-03-11 11:17:44 IRST, mt1957 wrote: > Op 10-03-16 om 20:14 schreef yary: >> There's "require" to load a module at runtime >> >> http://docs.perl6.org/syntax/require >> >> The $*REPO object controls how to search for mo

Re: importing code

2016-03-10 Thread mt1957
Op 10-03-16 om 20:14 schreef yary: There's "require" to load a module at runtime http://docs.perl6.org/syntax/require The $*REPO object controls how to search for modules, http://docs.perl6.org/language/5to6-perlvar mentions it. I don't know much more than that, Thanks for your answer, I've p

Re: importing code

2016-03-10 Thread yary
There's "require" to load a module at runtime http://docs.perl6.org/syntax/require The $*REPO object controls how to search for modules, http://docs.perl6.org/language/5to6-perlvar mentions it. I don't know much more than that,

importing code

2016-03-10 Thread juhi en marcel
Hi everyone, I want to import code into perl6 without using EVAL to be able to install plugins and the like. Are there any ideas e.g. using the meta system. thanks, marcel timmerman