Skip to content

Instantly share code, notes, and snippets.

@53ningen
Created July 9, 2014 13:31
Show Gist options
  • Save 53ningen/fccfcb0af7ae98cf7b66 to your computer and use it in GitHub Desktop.
Save 53ningen/fccfcb0af7ae98cf7b66 to your computer and use it in GitHub Desktop.
Swift関連

Simple Values

  • Constant => let
  • Variant => val

example of let and val

let a = 3
a = 5       // => Compile Error

val b = 4
b = 5       // => b = 5

Control flow

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment