Skip to content

Instantly share code, notes, and snippets.

@AppleCEO
Last active June 21, 2019 02:40
Show Gist options
  • Select an option

  • Save AppleCEO/02a213b9a0e2002803fe26d68831b591 to your computer and use it in GitHub Desktop.

Select an option

Save AppleCEO/02a213b9a0e2002803fe26d68831b591 to your computer and use it in GitHub Desktop.
typealias example
typealias MyInt = Int
typealias YourInt = Int
let age : MyInt = 10 // MyInt 는 Int 의 다른 이름입니다.
let year : YourInt = 20 // YourInt 는 Int 의 다른 이름입니다.
let sum : Int
sum = year + age
// result: 30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment