DEV Community

Discussion on: If/else or just if?

Collapse
 
svedova profile image
Savas Vedova

In Golang if the if statement is returning, the linter will complain about the else statement. In short,

if statement == true {
  return 
}

// This is the else statement