Daniel Sockwell
Daniel Sockwell
After discussing the issue with the attorney we're working with, I believe we need take the following two steps to secure our trademark to "Raku". We need to act fairly...
@lizmat thanks, that's helpful to know. We'll ask the attorney if we can supply more than one translation. If we can only supply one, do you have a preference about...
> I swear I remember Raku name discussions also talking about "Rakuda", which is one possible Japanese word for camel. Yeah, I came across that too – for example, it...
This isn't a full solution, but might point the way towards one. I've noticed that iterating through a sparse Array and `dd`ing each value returns more info than `say`ing the...
If we're focused on roundtripping, there is also the issue that default values don't roundtrip at all: ```raku my @a is default(42); @a[2] = 2; say @a.raku # [42, 42,...
That's actually working as intended (though it's not currently documented very well; see [Raku/doc#3962](https://github.com/Raku/doc/pull/3962) for WIP efforts to improve the related docs). This is a kind of tricky corner of...
Oh, and I also initially found the way list assignment flattens about as surprising as you do, which lead me to pose the question [*why* does list assignment flatten its...
> what do we have for swapping @-sigilled variables? The idiom I've seen for that is `(@a, @b) Z= (@b, @a)` (or sometimes with `«=»` instead of `Z=`). That's not...
I really like this idea – it would increase the parallelism between `react` and `gather`. How would `done` work outside of a `react` block? Still accept a value and return...
> done without supply or react Sorry, I wasn't clear: I meant how to handle `done` in a supply context, not in an arbitrary context.