We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6548d0 commit a8a25c0Copy full SHA for a8a25c0
doc/Type/Any.pod6
@@ -605,7 +605,7 @@ Coerces the invocant to a C<list> by applying its
605
L«C<.list>|/routine/list» method and uses
606
L«C<List.roll>|/type/List#routine_roll» on it.
607
608
- my Mix $m = ("þ" xx 3, "ð" xx 4, "ß" xx 5).Mix
+ my Mix $m = ("þ" xx 3, "ð" xx 4, "ß" xx 5).Mix;
609
say $m.roll; # OUTPUT: «ð»
610
say $m.roll; # OUTPUT: «(ß ß þ ß þ)»
611
@@ -624,7 +624,7 @@ Coerces the invocant to a C<list> by applying
624
its L«C<.list>|/routine/list» method and uses
625
L«C<List.pick>|/type/List#routine_pick» on it.
626
627
- my Range $rg = 'α'..'ω'
+ my Range $rg = 'α'..'ω';
628
say $rg.pick(3); # OUTPUT: «(β α σ)»
629
630
0 commit comments