hello people,
D526P:
https://docs.raku.org/language/5to6-nutshell#index-entry-PERL6LIB-PERL6LIB
DFIM : https://docs.raku.org/language/modules#Finding_installed_modules
DLIB :
https://docs.raku.org/programs/03-environment-variables#index-entry-RAKULIB
This D526P is deprecated and some RAKULIB de
I "misread"
say 1, 1, * + * ...^ *>= 100;
thinking "shouldn't it be '<=' as you want the total to be less than 100?" but
$ raku -e 'say 1, 1, * + * ...^ *<= 100;'
===SORRY!=== Error while compiling -e
Whitespace required before <= operator
at -e:1
--> say 1, 1, * + * ...^ *<= 100;⏏
expecti
Hi Andy!
Maybe this helps (separate coding elements with parens and/or brackets,
still get the same result):
> say 1, 1, * + * ...^ *>= 100;
(1 1 2 3 5 8 13 21 34 55 89)
> say 1, 1, * + * ...^ (*>= 100);
(1 1 2 3 5 8 13 21 34 55 89)
> say 1, 1, * + * ...^ ( * >= 100);
(1 1 2 3 5 8 13 21 34 55 8
I just submitted a PR based on this useful thread.
https://github.com/Raku/doc/pull/3942
Thanks to you both!
(Also, apparently $:a has the same behavior – after the first time, you
can use $a )
Gil Scott-Heron "I'm New Here" (2010):
No matter how far wrong we've gone
We can always turn around ...
Turn around, turn around, turn around
And you may come full circle
And be new here again
https://www.youtube.com/watch?v=eV_astp3BjM
The Raku Study Group
Sunday Augu