Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save thekostya/45d32bd75d6f814a0078ec3bd5a66624 to your computer and use it in GitHub Desktop.
Save thekostya/45d32bd75d6f814a0078ec3bd5a66624 to your computer and use it in GitHub Desktop.
package main
import "fmt"
func main() {
deferExample()
fmt.Println("Returned from deferExample.")
}
func deferExample() {
defer fmt.Println("Deferred log.")
fmt.Println("Print line.")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment