Ross Angle
Ross Angle
I see what you're saying. It's too bad we can't subtract that from the `sorting` time too; surely there's some unnecessary overhead in the interface there too. If I add...
It's a minor point, but I don't think grouping parens "always" work in languages that have them. Some only let you add them around expressions. Grouping parens serve the purpose...
It sounds like that would lead to some friction in the module ecosystem, where some modules' functions would expect tuples and some would expect multiple arguments. Sometimes fragmentation like that...
If I understand everyone correctly, I'm seeing three topics here -- all of which I agree are issues -- which have little relation with each other. They're related only by...
I think I noticed a discrepancy: Right after you say "dots are left-associative," you illustrate that with `(#%dot x (#%dot y z))`, which would actually indicate they're right-associative. It looks...
Oh, you don't intend for dots to be left-associative? If they're meant for field and method lookup as in Java, that would usually make them left-associative (since the thing on...
@jeapostrophe > Re: dots ---- I was imagining it would work like Remix where the thing on the left of a dot gets to decide what things on the right...
There are a lot of data structures that could be considered in place of simple linked lists. Finger trees a nice range of operations. I'm only just now finding out...
This seems related to #42.
I see value in having a consistent experience between the language kernel and the library ecosystem, so that someday the kernel can easily be relegated to library status if a...