[[Swift実践入門]]
#norelated
#contents
* 1.4 命名規則 [#r24af40c]
** 単語の区切り方 [#c85526dc]
Swiftの習慣
- アッパーキャメルケース(upper camel case)
-- 型 SomeType
-- プロトコル SomeProtocol
-- モジュール SomeModule
- ロワーキャメルケース(lower camel case)
-- 変数 someVariable
-- 定数 someConstant
-- 関数 someFunction()