Re: Notes/Questions about Leon Timmermans's talk

2021-06-10 Thread Marc Chantreux
Hello, > > sub foo ( Int $x ) { 0 if $x > 5 } > > sub hello {say "hello $^world"} > > if defined my $value = foo 45 { hello $value } >with foo 7 { say $^value } i feel really dumb right now as i just used with and didn't made the match in my head. > or if you want to trigger on *not*

Re: Notes/Questions about Leon Timmermans's talk

2021-06-09 Thread Elizabeth Mattijsen
> On 9 Jun 2021, at 12:48, Marc Chantreux wrote: > > hello, > > I just saw this and it's very good > > https://www.youtube.com/watch?v=elalwvfmYgk > > The features he picked are indeed things i really like in raku > and i learned some interesting details. Other details are still > bugging me

Notes/Questions about Leon Timmermans's talk

2021-06-09 Thread Marc Chantreux
hello, I just saw this and it's very good https://www.youtube.com/watch?v=elalwvfmYgk The features he picked are indeed things i really like in raku and i learned some interesting details. Other details are still bugging me so i have some questions there: A. if x -> $y with // For exemple,