On 2020-05-26 17:13, ToddAndMargo via perl6-users wrote:
Hi All,
What in the dickens Only `say %Options;` works,
but only when it only has a single argument.
241: for split( "", %Options ) -> $y {say "$y = ", ord( $y ) };
242: for %Options.comb -> $y {say "$y = ", ord( $y ) };
243: say
Hi All,
What in the dickens Only `say %Options;` works,
but only when it only has a single argument.
241: for split( "", %Options ) -> $y {say "$y = ", ord( $y ) };
242: for %Options.comb -> $y {say "$y = ", ord( $y ) };
243: say %Options;
244: say ">" ~ %Options ~ "<";
245: prin