Skip to content

Instantly share code, notes, and snippets.

@vani2
Created July 24, 2016 16:09
Show Gist options
  • Save vani2/77ade7fe3984a2a24b62bbf604522be2 to your computer and use it in GitHub Desktop.
Save vani2/77ade7fe3984a2a24b62bbf604522be2 to your computer and use it in GitHub Desktop.
//#1 Возвращаемый тип идёт сразу за закрывающей круглой скобкой
func abc() -> Int {
//...
}
//#2 Возвращаемый тип идёт отдельной строкой
func abc()
-> Int {
//...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment