Re: compunit classes

2019-11-19 Thread William Michels via perl6-users
Hi Richard, Have you gotten a response to your query? I'd be interested to know how this documentation is progressing. Best Regards, Bill. On Sat, Nov 16, 2019 at 8:28 AM Richard Hainsworth wrote: > > Hi, > > I'm sending an email rather than IRC to catch more feedback. > > There are several Com

Re: Question about "colon syntax" for calling other methods on 'self' inside a method

2019-11-19 Thread Brad Gilbert
$ by itself is a an anonymous state variable. So these two lines would be exactly the same. $.foo (state $).foo A feature was added where $.foo would instead be used for public attributes. Since a public attribute just adds a method, it was allowed to use it to call any method. Which pro