Skip to content

Instantly share code, notes, and snippets.

@shockalotti
Created May 28, 2014 01:38
Show Gist options
  • Save shockalotti/97e9be384c9c241b9bbf to your computer and use it in GitHub Desktop.
Save shockalotti/97e9be384c9c241b9bbf to your computer and use it in GitHub Desktop.
Go Golang - basic Defer function
package main
import "fmt"
func first() {
fmt.Println("1st")
}
func second() {
fmt.Println("2nd")
}
func main() {
defer second()
first()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment