01:48 sibl joined 07:04 sibl left 07:05 sibl joined 07:08 librasteve_ joined 09:11 dakkar joined 09:38 librasteve_ left 10:51 sibl left 10:59 sibl joined 11:20 sibl left, sibl joined 11:22 librasteve_ joined 11:26 sibl left, sibl joined 11:35 sibl left
librasteve_ rakudoweekly.blog/2026/03/10/2026-...g-cragcli/ 14:50
15:18 human_blip left 15:20 human_blip joined 15:37 human_blip left 15:39 human_blip joined 15:52 human_blip left 15:54 human_blip joined 17:13 human_blip left 17:16 human_blip joined 18:07 dakkar left 20:56 human_blip left 20:58 human_blip joined 21:03 human_blip left 21:05 human_blip joined 22:42 topnep left 22:43 topnep_ joined 23:38 david7832 joined
david7832 Is there  a good idiom for applying the smartmatching expression (substitution in particular) to several variables at a time? Something like $a, $b, $c ~~ s/abc/ABC/  (which does't do the desired thing, only affecting $c, since ~~ binds more strongly than the comma) 23:42
lizmat m: my ($a,$b,$c) = <abc def ghi>; s/abc/ABC/ for $a,$b,$c; dd $a, $b, $c 23:44
camelia $a = "ABC"
$b = "def"
$c = "ghi"
david7832 that's perfect, thanks :) 23:45