Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. // Take advantage of Boolean short-circuit evaluation
  2. if h != 2 && h != 3 && h != 5 && h != 6 && h != 7 && h != 8
  3. {
  4. fmt.Println("Hello")
  5. }
  6. return 0
  7.  
  8. missing condition in if statement
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement