Skip to content

Instantly share code, notes, and snippets.

@rydrman
Last active June 6, 2020 19:21
Show Gist options
  • Save rydrman/0c2a3ed69ceb9de134c022d28b82ffda to your computer and use it in GitHub Desktop.
Save rydrman/0c2a3ed69ceb9de134c022d28b82ffda to your computer and use it in GitHub Desktop.
Function example exiting as soon as possible
func getValue() int {
if !condition {
return alternative()
}
value := someBase()
if !shouldMore {
return value
}
return value + more()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment