Re: require on string stopped working in rakudo 2015.09

2015-09-30 Thread Lloyd Fournier
We have yet to make a decision about the categories of use, require etc: https://github.com/perl6/doc/issues/101 LL On Sat, Sep 26, 2015 at 10:23 AM, Gabor Szabo wrote: > > > On Sat, Sep 26, 2015 at 3:39 PM, Moritz Lenz wrote: > >> >> >> I've fixed my script by switching to EVAL "use $module";

Re: require on string stopped working in rakudo 2015.09

2015-09-26 Thread Gabor Szabo
On Sat, Sep 26, 2015 at 3:39 PM, Moritz Lenz wrote: > > >> I've fixed my script by switching to EVAL "use $module"; > >> but I wonder if this is a regression or a planned deprecation? > > > > I’m not sure yet. > > > > Could you please rakudobug it so that it doesn’t fall through the > cracks? Th

Re: require on string stopped working in rakudo 2015.09

2015-09-26 Thread Moritz Lenz
On 09/26/2015 01:07 PM, Elizabeth Mattijsen wrote: >> On 26 Sep 2015, at 06:47, Gabor Szabo wrote: >> I am really glad Rakudo finally came out. >> I've installed in and tried to run the tests of Perl6::Maven. >> >> They quickly failed as I have been using 'require' on string >> to check if all t

Re: require on string stopped working in rakudo 2015.09

2015-09-26 Thread Tobias Leich
Hi, that your example was working was an accident. It is either: require "path/to/Foo.pm"; - or - require ::("Foo"); Cheers, FROGGS Am 26.09.2015 um 06:47 schrieb Gabor Szabo: > Hi, > > I am really glad Rakudo finally came out. > I've installed in and tried to run the tests of Perl6::Maven. > >

Re: require on string stopped working in rakudo 2015.09

2015-09-26 Thread Elizabeth Mattijsen
> On 26 Sep 2015, at 06:47, Gabor Szabo wrote: > I am really glad Rakudo finally came out. > I've installed in and tried to run the tests of Perl6::Maven. > > They quickly failed as I have been using 'require' on string > to check if all the module compile properly. > > The following code now fa

Re: require on string stopped working in rakudo 2015.09

2015-09-26 Thread Moritz Lenz
Hi, On 09/26/2015 06:47 AM, Gabor Szabo wrote: > Hi, > > I am really glad Rakudo finally came out. > I've installed in and tried to run the tests of Perl6::Maven. > > They quickly failed as I have been using 'require' on string > to check if all the module compile properly. > > The following co

require on string stopped working in rakudo 2015.09

2015-09-25 Thread Gabor Szabo
Hi, I am really glad Rakudo finally came out. I've installed in and tried to run the tests of Perl6::Maven. They quickly failed as I have been using 'require' on string to check if all the module compile properly. The following code now fails: use v6; my $name = 'Bailador'; require $name; eve