Pre-SIP: A Syntax for Collection Literals Scala is lacking so far a concise way to specify collection literals. This makes it an outlier compared to many other popular languages. We propose to change this by introducing a special syntax for such literals. The syntax is quite conventional: A sequence is written as a comma-separated list of elements enclosed in square brackets. For instance, here is a diagonal matrix of rank 3: [[1, 0, 0], [0, 1, 0], [0, 0, 1]] This pre-sip is a follow-...
@smoredahl That’s an absolute dog shit reason to be completely honest.
No matter how familiar it makes the language, it increases the inconsistency within the language itself, not to mention the complexity that comes with it.
I have a whole presentation about how stupid increasing familiarity at the expense of simplicity and consistency is.
One of the core reason why we can’t have nice things in computing.
I see what you’re saying, but isn’t familiarity worth something? After all, Brainfuck is incredibly simple and consistent :)
@smoredahl Familiarity is designing for existing users, simplicity is designing for everyone; see https://soc.me/languages/familiarity.
(I have had this discussion many times. I have heard every single argument on why *this* time repeating a past mistake for familiarity is good. It never works out.)
> After all, Brainfuck is incredibly simple and consistent :)
By that measure C++ should be very familiar, because it contains every feature ever imagined by someone. We know how that one worked out.
deleted by creator