Skip to content

Instantly share code, notes, and snippets.

@mlowicki
Created October 12, 2016 20:49
Show Gist options
  • Save mlowicki/5914b6ae4a0553bf420823f20a448353 to your computer and use it in GitHub Desktop.
Save mlowicki/5914b6ae4a0553bf420823f20a448353 to your computer and use it in GitHub Desktop.
package main
import "fmt"
type T struct{}
func (t T) m() {
fmt.Println("Inside method")
}
func main() {
t := T{}
defer t.m()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment