Advertisement
Koepnick

if statements

Jan 15th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 0.10 KB | None | 0 0
  1. if x < 0 {
  2.     // Do stuff
  3. } else {
  4.     // Do other stuff
  5. }
  6.  
  7. if y := 5+5 ; y < 15 {
  8.     // Do stuff
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement