Rakudo Star update?!

2019-09-27 Thread Caitlin Gibbons
Hi all. The most recent Rakudo Star is still 2019.03 Is anyone going to update it in the foreseeable future? It’s been almost 7 months...

Re: anything faster than say [+] lines?

2019-09-27 Thread Andy Bach
> So these are equivalent: seq 10 | perl6 -ne 'my Int $y += $_; END { print $y; }' seq 10 | perl6 -e '(my Int $y += $_; END { print $y; }) for lines' > (Note that I needed to surround it in parentheses so that it is one > statement.) > It could be argued that -n should turn your code int