[IOS路線図]算術


arithmetic


四則演算子
+, -,/, *
1 + 2       // 3
5 - 3       // 2
2 * 3       // 6
10.0 / 2.5  // 4.0

"hello, " + "world"  // equals "hello, world", string타입은 +로 합칠수 있습니다.
https://jusung.gitbook.io/the-swift-language-guide/language-guide/02-basic-operators