[00:21] *** Manifest0 left
[03:37] <disbot4> <comborico> I see... I like bigger font, which complements 80 columns.

[04:03] *** sibl joined
[06:46] *** sibl left
[06:46] *** sibl joined
[07:05] *** Manifest0 joined
[07:53] *** dakkar joined
[09:10] *** dakkar_ joined
[09:10] *** dakkar left
[09:12] *** dakkar_ is now known as dakkar

[11:59] *** sibl left
[16:12] *** human-blip left
[16:16] *** human-blip joined
[16:32] *** dakkar left
[20:08] <disbot4> <comborico> Is there a quick chart or list of the common operators and their unicode number?

[20:11] <disbot4> <comborico> I found it: https://docs.raku.org/language/unicode_entry

[20:26] <disbot4> <comborico> Are <for .split('$')> and <for .split('$_')> the same?

[20:29] <disbot4> <comborico> After executing the respective code, I see they are not.

[20:47] <lizmat> feels to me you're asking whether .split("foo") is the same as .split("bar")  ?  or am I missing something?

[20:49] <disbot4> <librasteve> I suspect that it’s hard to search for $ (the anonymous variable) and $_ (the topic variable) in the docs until you know what they are :-)

[20:55] *** jgaz joined
[20:59] <disbot4> <comborico> And also $^.

[21:01] <disbot4> <comborico> And I'm a bit on the slow side. (There is no emoticon for how I feel.  I need happy eyes, but open mouth.)

[21:05] <disbot4> <comborico> And the rabbit hole effect, what is $^variable about -> ^ is a twigil -> example uses a |, what does this pipe do here? And so on.

[21:11] *** jgaz left
[21:14] <disbot4> <comborico> I got mixed up.  The exercise happens to be removing $'s out of the text.  So the $ in .split('$') is completely unrelated to Raku.

[21:18] <lizmat> .subst('$', :g)

[21:19] <lizmat> { $^b + $^a }

[21:19] <lizmat> is just short for:

[21:19] <lizmat> -> $a, $b { $b + $a }

[21:20] <lizmat> (note that the variables are alphabetically ordered)

[22:53] <disbot4> <comborico> Raku REPL in Emacs seems to bug out every so often.  Weird errors like |@array[0].split('character');| producing error: missing closing ).

[22:53] <disbot4> <comborico> (I'm attempting to enclose code with |'s.)

[22:54] <disbot4> <comborico> (for your reading)🥹

[22:59] *** apogee_ntv left
[23:00] *** apogee_ntv joined
[23:08] <disbot4> <comborico> And then when I restart REPL, same code works.

