Re: Strange output on 'say Foo::Bar::<>;'

2018-12-18 Thread JJ Merelo
Sorry to arrive so late here. I had the impression that there was some issue with the documentation here somewhere. Is that still the case? Can we improve docs in any way? El jue., 11 oct. 2018 a las 15:36, Richard Hogaboom (< richard.hogab...@gmail.com>) escribió: > # > # example from

Re: contains booboo

2018-12-18 Thread ToddAndMargo via perl6-users
On Tue, Dec 18, 2018 at 10:49 PM ToddAndMargo via perl6-users mailto:perl6-users@perl.org>> wrote: Hi All, Where is my booboo? $ p6 'my$x="abcd"; if $x.contains("b" && not "q") {say "y"}else{say "n"};' n In the mean time, I will ue if $x.contains("b") &&

contains booboo

2018-12-18 Thread ToddAndMargo via perl6-users
Hi All, Where is my booboo? $ p6 'my$x="abcd"; if $x.contains("b" && not "q") {say "y"}else{say "n"};' n In the mean time, I will ue if $x.contains("b") && not $x.contains( "q" ) Many thanks, -T -- ~~ When you say, "I wrote a program that crashed

Re: contains booboo

2018-12-18 Thread Ralph Mellor
.contains tests whether its invocant, treated as a string, contains its argument, treated as a string. The argument you've given to .contains is: "b" && not "q". That's not a string. Here's one option: my$x="abcd"; if $x.contains("b") && not $x.contains("q") {say "y"}else{say "n"}; On Tue,