🦋 Welcome to the MAIN() IRC channel of the Raku Programming Language (raku.org). Log available at irclogs.raku.org/raku/live.html . If you're a beginner, you can also check out the #raku-beginner channel!
Set by lizmat on 6 September 2022.
ab5tract I love this idea - www.exceptionalcreatures.com/ 17:07
lizmat envisions a nice selection of butterflies :-) 17:17
ab5tract I love this idea ^^ :) 17:18
antononcube @lizmat and @ab5tract Use DALL-E for the exceptional butterflies (or raccoons.) 17:29
Xliff m: say 2 ∈ (1...3) 20:46
camelia True
Xliff m: sub a { 1...3 }; say 2 ∈ a;
camelia True
Xliff m: class A { method a { 1...3 } }; say 2 ∈ A.a 20:47
camelia True
Xliff m: enum Alf <AA BB CC DD EE>; class A { method a { CC...DD } }; say BB ∈ A.a 20:48
camelia False