show/hide this revision's text 2 tagged as poll
show/hide this revision's text 1

Use of else after a return or break from a function or loop

This is a matter of style I've considered for a while, and I'm curious of others thoughts. The two pieces of code below are logically equivalent, which in your opinion is better style and why?:

 // no else
some_function():
   if ( my_var == 0 ) then:
       return true

   print "hello: " + my_var
   return false


// with else
some_function():
    if ( my_var == 0 ) then:
        return true
    else:
        print "hello: " + my_var
        return false