Re: is there a raku job site?

2021-06-02 Thread ToddAndMargo via perl6-users

On 6/2/21 1:19 AM, Theo van den Heuvel wrote:

Hi gurus,

I consider hiring a raku consultant, but there does not seem to exist a 
raku job site. The perl job site seems to implicitly exclude raku jobs.

I asked but have not heard back.

Any ideas? Could I post the call in this group?

thanks,
Theo van den Heuvel



Hi Theo,

Not what you asked, but what are you trying to
have written?  I am very curious.  What???  Okay,
nosey too.

:-)

-T


Re: is there a raku job site?

2021-06-02 Thread Vadim Belman


I think it is totally fine to post here. You could also try posting in 
r/rakulang on reddit.

Best regards,
Vadim Belman

> On Jun 2, 2021, at 4:19 AM, Theo van den Heuvel  wrote:
> 
> Hi gurus,
> 
> I consider hiring a raku consultant, but there does not seem to exist a raku 
> job site. The perl job site seems to implicitly exclude raku jobs.
> I asked but have not heard back.
> 
> Any ideas? Could I post the call in this group?
> 
> thanks,
> Theo van den Heuvel
> 



Re: What's going on with "given (junction) {when (value)...}"

2021-06-02 Thread William Michels via perl6-users
Hi Ralph, Both prefix/postfix 'when' look okay on my Rakudo_2020.10 install:

user@mbook:~$ raku
Welcome to 𝐑𝐚𝐤𝐮𝐝𝐨™ v2020.10.
Implementing the 𝐑𝐚𝐤𝐮™ programming language v6.d.
Built on MoarVM version 2020.10.

To exit type 'exit' or '^D'
> when 3 { say 'prefix when' }
False
> { say 'postfix when' } when 3
()
> $_ := any(4,3);
any(4, 3)
> when 3 { say 'prefix when' }
prefix when
> { say 'postfix when' } when 3
postfix when

> $_ := any(5,4);
any(5, 4)
> when 5 { say 'prefix when' }
prefix when
> { say 'postfix when' } when 5
postfix when

> $*VM
moar (2020.10)
>



HTH, Bill.



On Tue, Jun 1, 2021 at 8:09 AM Ralph Mellor  wrote:
>
> Curiously, it works for postfix `when`:
> ```
> $_ := any(4,3);
> {say 'postfix when'} when 3; # 3
> when 3 { say 'prefix when' }  # (no output)
> ```
>
> --
> love, raiph


is there a raku job site?

2021-06-02 Thread Theo van den Heuvel

Hi gurus,

I consider hiring a raku consultant, but there does not seem to exist a 
raku job site. The perl job site seems to implicitly exclude raku jobs.

I asked but have not heard back.

Any ideas? Could I post the call in this group?

thanks,
Theo van den Heuvel