Skip to content

Instantly share code, notes, and snippets.

@kleberksms
Created March 13, 2019 17:24
Show Gist options
  • Save kleberksms/9069e7e955ad40ad3771c7247afb7d45 to your computer and use it in GitHub Desktop.
Save kleberksms/9069e7e955ad40ad3771c7247afb7d45 to your computer and use it in GitHub Desktop.
Rule 2: Don’t use the ELSE keyword
if (status == DONE)
{
doSomething();
}
else
{
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment