> On 8 Oct 2025, at 09:08, ToddAndMargo via perl6-users <perl6-users@perl.org> > wrote: > > On 10/8/25 12:01 AM, ToddAndMargo wrote: >> Hi All, >> Redeclaration of routine 'GetEsetInternetSecurity'. Did you >> mean to declare a multi-sub? >> at /home/linuxutil/./GetUpdates.raku:5161 >> I meant to declare the same sub name INSIDE their own subs. >> They are meant to be ONLY be active inside the subs >> they are embedded in and ignored everywhere else. >> Grrrrr...... >> -T > > Never mind. I read something wrong in my code. > > And I am tired and in a rather too crabby mood > to program. It's always good to take a step away from the keyboard every now and then. also: $ raku -e 'r 'sub a() { sub a() { 42 }; say a }; a' 42 so that works fine. Although I would not recommend it, fwiw.