Skip to content

Instantly share code, notes, and snippets.

@nikita8
Last active November 14, 2018 07:35
Show Gist options
  • Save nikita8/51edaede72528c458f2ba252f7f7e881 to your computer and use it in GitHub Desktop.
Save nikita8/51edaede72528c458f2ba252f7f7e881 to your computer and use it in GitHub Desktop.
if else condition
// go
num := 9
if num < 0 {
fmt.Printf("%d is negative", num)
} else if num < 10 {
fmt.Printf("%d has 1 digit", num)
} else {
fmt.Printf("%d has multiple digits", num)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment