You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you're proposing language changes, please use
the golang-nuts mailing list.
PS: similar ideas have been proposed before, and
rejected. Search the mailing list archive.
mikioh
changed the title
if err != nil => ||
spec: if err != nil => ||
May 16, 2015
I have a suggestion
_,err := xxoo() if err != nil { return 1 }
=>
_,err := xxoo() || return 1
The text was updated successfully, but these errors were encountered: