Merging collapsible if statements increases the code's readability.
if
if condition1 { if condition2 { fmt.Println("Hello World") } }
if condition1 && condition2 { fmt.Println("Hello World") }