Guest User

Untitled

a guest
Jan 15th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 0.16 KB | None | 0 0
  1. func Foo(x bool) bool {
  2.     if x {
  3.         fmt.Println("True)
  4.         return !x
  5.     } else {
  6.         fmt.Println("False)
  7.         return !x
  8.     }
  9.  
  10.     panic("Code never reaches here")
  11. }
Add Comment
Please, Sign In to add comment