Advertisement
Guest User

Untitled

a guest
May 22nd, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 0.25 KB | None | 0 0
  1.     var same int = 12 // normal variable declaration
  2.     same := 12 // short variable declaration
  3.  
  4.     a := 1
  5.     b := 2
  6.     a,b := check()  // Throws exception.
  7.     // Cannot use short variable declaration if there is no new variables
  8.     b2 := 2
  9.     a2, b2 := check()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement