Skip to content

Instantly share code, notes, and snippets.

@vani2
Created July 24, 2016 16:13
Show Gist options
  • Save vani2/0d1529d7f05e1bb63a04fe80fbc3817c to your computer and use it in GitHub Desktop.
Save vani2/0d1529d7f05e1bb63a04fe80fbc3817c to your computer and use it in GitHub Desktop.
//#1 Круглые скобки примыкают к параметрам
func abc(a: String,
b: Int)
//#2 Круглые скобки не примыкают к параметрам
func abc(
a: String,
b: Int
)
//#3 Не переносим
func abc(a: String, b: Int)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment