Trailing commas feature is the best, but please do...
# language-proposals
m
Trailing commas feature is the best, but please don't make it the other way, i.e. with optional commas. This would change meaning of a lot of code:
Copy code
listOf(
                1
                        + 2
        ).size == 1
would become
Copy code
listOf(
                1
                +2
        ).size == 2
👍 2