Skip to content

Instantly share code, notes, and snippets.

@vani2
Created July 24, 2016 15:58
Show Gist options
  • Save vani2/f9957de52e6e2b6e1f7b4d19edd05d2d to your computer and use it in GitHub Desktop.
Save vani2/f9957de52e6e2b6e1f7b4d19edd05d2d to your computer and use it in GitHub Desktop.
//#1 Перенос по оператору, оператор в конце строки
if true &&
false &&
"asd" > "asd" {
// ...
}
//#2 Перенос по оператору, оператор в начале строки
if true
&& false
&& "asd" > "asd" {
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment