Created
March 28, 2020 04:24
-
-
Save GOROman/60716e3b47e11817f39f37132df35455 to your computer and use it in GitHub Desktop.
Swift メモ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// コメントは // | |
//# 変数 | |
//## let と val がある | |
let a = 10 | |
var b = 10 | |
a = 20 // ng | |
b = 20 // ok | |
let c : Int32 = 10 // 型指定 | |
//## Optional型 | |
var o : Optional<Int32> = 10 | |
o = nil // Optional型は nil が代入可能 | |
var o2 : Int32? = 10 // Optional<> の省略形 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment