Is the appveyor stanza (see the rakudobrew script below)
- rakudobrew build moar %TEST_MOAR%
the same as what you are suggesting?
Richard
On 13/06/2020 02:53, Vadim Belman wrote:
Not really sure about it, but don't you have to do 'rakudobrew switch
moar-%TEST_MOAR%' after building? rakudob
I was playing with a regex and array interpolation.
From the documentation I thought the following comparisons would be the
same, but they are not.
What am I missing?
my @W = ;
my $S = 'perlchallengeextrathingswithweeklysome' ; #randomly concatenate the words
without spaces say 'yes' if $S ~
Inside of a regex `{…}` will just run some regular Raku code.
Code inside of it will most likely have no effect on what the regex matches.
What you should have written was:
$ = "@W[3]"
The thing you were thinking of was:
$ = <{ @W[3] }>
Which could have been written as:
---
To
Understood. Thankyou.
The " quotes is what I missed. So $ = "@W[3]" worked as I would expect.
The other two variations, eg. $ =<{ @W[3] }>, gave Nil responses,
indicating match failure.
On 13/06/2020 14:41, Brad Gilbert wrote:
Inside of a regex `{…}` will just run some regular Raku code.
Cod
Hi,
I seem to be having some problems with Brad's code. The 'boolean pick'
code seems far too clever for me to have intuited it on my own, so
(to expand my Raku/Perl6 vocabulary), I played around with matching
extra 'True' or 'False' values--as well as played around with seeing
if similar 'boolean
That was just a dumb example.
An incredibly dumb example.
So what happens is that `Bool.pick` chooses The Bool values of either
`True` or `False`.
It does this at every position in the string.
'TrueFalse' ~~ / <{ Bool.pick }>
Let's say that initially `Bool.pick` chooses `False`.
That value t
On Sat, Jun 13, 2020 at 10:21 AM Brad Gilbert wrote:
> That was just a dumb example.
> An incredibly dumb example.
>
> So what happens is that `Bool.pick` chooses The Bool values of either
> `True` or `False`.
> It does this at every position in the string.
>
> 'TrueFalse' ~~ / <{ Bool.pick }
On Sat, Jun 13, 2020 at 1:27 PM Sean McAfee wrote:
> On Sat, Jun 13, 2020 at 10:21 AM Brad Gilbert wrote:
>
>> That was just a dumb example.
>> An incredibly dumb example.
>>
>> So what happens is that `Bool.pick` chooses The Bool values of either
>> `True` or `False`.
>> It does this at every p
Thank you so much for explaining what's going on here, Brad. You gave
a good example--just one that I misinterpreted. I think I understand
now: inside a regex Richard has to enclose his code within "<{ ... }>"
for it to be properly interpreted as a 'match objective' (I hope I
said that correctly).
Did you ever tried to follow the steps of you script manually? I guess on a
clean system without pre-installed rakudo you'd get the same result. Because
`build` only builds a release. When it's ready one needs to `switch` to the
built. So, no, these two are different.
Best regards,
Vadim Belma
Vadim,
Your response is like a whisper in a storm. Perhaps there is meaning to
it, but I have not the ears wherewith to hear it.
(a) I am trying to find a way to test a Module under Windows when I do
not have access to a Windows machine. So no I do not see how I could
follow the steps of the
With regard to 'built and installed' – yes, it is. But the purpose of
rakudobrew is to build and install many different versions of rakudo and switch
between them. The way it implements the task is by installing rakudo in a
location which is normally not accessible and then provide means to act
12 matches
Mail list logo