Advertisement
cwchen

[Go] if demo

Sep 14th, 2017
431
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 0.12 KB | None | 0 0
  1. package main
  2.  
  3. import (
  4.     "fmt"
  5. )
  6.  
  7. func main() {
  8.     x := 10
  9.  
  10.     if x > 0 {
  11.         fmt.Println("x is larger than zero")
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement