すごいちょっとした事ですが。Swiftは複数行のコメントがネストできるということです。地味に便利。今まで、がっと既存のコードをコメントアウトしようとしたときに、途中に複数行コメントがあると面倒臭かったからなぁ。
“Unlike multiline comments in C, multiline comments in Swift can be nested inside other multiline comments. You write nested comments by starting a multiline comment block and then starting a second multiline comment within the first block. The second block is then closed, followed by the first block:”
抜粋:: Apple Inc. “The Swift Programming Language”。 iBooks. https://itunes.apple.com/WebObjects/MZStore.woa/wa/viewBook?id=881256329
/* コメント /* 真ん中コメント */ コメント */
これが可能ということ。