Skip to content

Instantly share code, notes, and snippets.

@goodmorningcody
Last active April 19, 2016 12:35
Show Gist options
  • Save goodmorningcody/c4db0c59ae011fe1551d to your computer and use it in GitHub Desktop.
Save goodmorningcody/c4db0c59ae011fe1551d to your computer and use it in GitHub Desktop.
스위프트 let과 var의 차이
let year = 2016
let name = "Cody"
var age = 20
var born = year-age+1
year = 2000
age = 30
born = year-age+1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment