Re: need string is not a a string is a string help

2020-05-26 Thread ToddAndMargo via perl6-users
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 

need string is not a a string is a string help

2020-05-26 Thread ToddAndMargo via perl6-users
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