Guest User

Untitled

a guest
Jul 20th, 2018
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. ## This doesn't compile
  2.  
  3. package main
  4.  
  5. func main() {
  6. if false {
  7. println("false")
  8. }
  9. else if true {
  10. println("true")
  11. }
  12. }
  13.  
  14.  
  15. ## This does
  16.  
  17. package main
  18.  
  19. func main() {
  20. if false {
  21. println("false")
  22. } else if true {
  23. println("true")
  24. }
  25. }
Add Comment
Please, Sign In to add comment