Skip to content

Instantly share code, notes, and snippets.

@josiah14
Created September 9, 2015 19:39
Show Gist options
  • Save josiah14/34a86ee2f69dd1721a6e to your computer and use it in GitHub Desktop.
Save josiah14/34a86ee2f69dd1721a6e to your computer and use it in GitHub Desktop.
interesting defer behavour
package main
import "fmt"
func main() {
defer fmt.Println("world")
defer fmt.Println("dude")
defer println("sweet")
fmt.Println("hello")
}
=>
hello
dude
world
sweet
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment