<div dir="ltr">I agree with replacing `default` with `else`.<div>First of all, `default` or `by default` is generally associated with some initial value, before any customization. `default` in `switch` is just a borrowing from C. A newbie programmer will better get used to `else` than to `default`.</div><div>Secondly, `switch` in Swift is almost the same as a sequence of `if-else-if` (not just a table, as in C). `else` in `switch` would create an association with last `else` in that chain.</div><div>Thirdly, `else` lines up nicely with `case`. You need to try it to feel the difference.</div><div>Go ahead and create a formal proposal for this, or shall I do this?</div></div>