Source file tour/flowcontrol/defer.go

     1  // +build OMIT
     2  
     3  package main
     4  
     5  import "fmt"
     6  
     7  func main() {
     8  	defer fmt.Println("world")
     9  
    10  	fmt.Println("hello")
    11  }
    12  

View as plain text