Advertisement
Guest User

Go indentation

a guest
May 12th, 2011
421
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 0.32 KB | None | 0 0
  1. package main
  2.  
  3. import "fmt"
  4.  
  5. func main() {
  6.                 if true {
  7.                             fmt.Printf("It's true\n")
  8.                         } else  {
  9.                                     fmt.Printf("It's false\n")
  10.                                 }
  11.                 fmt.Printf("Hello, world!\n")
  12.             }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement