Tim Nelson

Results 53 comments of Tim Nelson

@finanalyst : * Not sure what you mean by "We should also include something about documentation" unless you mean that we should have a page on documenting your distribution, in...

Hi! I've made the following updates: * Added the --silent option to curl, which should at least reduce the amount of output * Changed RAKULIB, as requested * Added the...

Also regularised use of subkind across the new pages (to "Modules").

Hi @ugexe , are you happy with this now?

Hi @ugexe , let me ask a different question: Can you have a look at your previous comments, and mark them "resolved" if you're satisfied with my changes? Thanks!

Hi @ugexe , I've addressed your points, thanks very much. Any more objections? Thanks

Have just added `export RAKUDO_RAKUAST=1` to my .bashrc, so next time I reboot, I'll never have that particular problem again. Thanks for picking up the missing piece. Do we need...

@lizmat : To answer your original question, I was making a base class where, if you inherit from it, it would call a POST-TWEAK method on all the child classes....

As additional context, the following works ``` RAKUDO_RAKUAST=1 raku -e 'use v6.e.PREVIEW; role A { has $.a = "test1"; submethod m1() { say $.a; } }; my $c = A.new;...