14 lines
294 B
Plaintext
14 lines
294 B
Plaintext
![]() |
=== Exceptions
|
||
|
|
||
|
Blocks in an `if` chain or `case` blocks that contain a single line of code are ignored.
|
||
|
|
||
|
[source,go]
|
||
|
----
|
||
|
if a == 1 {
|
||
|
doSomething() //no issue, usually this is done on purpose to increase the readability
|
||
|
} else if a == 2 {
|
||
|
doSomethingElse()
|
||
|
} else {
|
||
|
doSomething()
|
||
|
}
|
||
|
----
|