Skip to content

Instantly share code, notes, and snippets.

@koher
Created February 21, 2017 06:07
Show Gist options
  • Save koher/37525a2a23d567b87b59520a5711500f to your computer and use it in GitHub Desktop.
Save koher/37525a2a23d567b87b59520a5711500f to your computer and use it in GitHub Desktop.
func foo() -> Int { return 2 }
func foo() -> Float { return 3.0 }
let a: Int = foo()
let b: Float = foo()
print(a) // 2
print(b) // 3.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment