Skip to content

Instantly share code, notes, and snippets.

@cipepser
Created November 5, 2016 06:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cipepser/7b299b8f60a9ac6a3296f9d8f09fbfa5 to your computer and use it in GitHub Desktop.
Save cipepser/7b299b8f60a9ac6a3296f9d8f09fbfa5 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
)
func main() {
defer fmt.Println("execute this statement thirdly")
defer fmt.Println("execute this statement secondly")
fmt.Println("execute this statement firstly")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment