Skip to content

Instantly share code, notes, and snippets.

@hiraq
Created August 28, 2016 14:23
Show Gist options
  • Save hiraq/50c1e45624e185804c5559757001ba76 to your computer and use it in GitHub Desktop.
Save hiraq/50c1e45624e185804c5559757001ba76 to your computer and use it in GitHub Desktop.
package main
import "fmt"
func JustPrintIt(msg string) {
defer func() {
fmt.Println("Should be triggered after function called")
}()
fmt.Println(msg)
}
func main() {
JustPrintIt("halo")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment