Skip to content

Instantly share code, notes, and snippets.

@jcdan3
Created February 14, 2022 19:31
Show Gist options
  • Save jcdan3/87bd000609b827861d09dadeeed99f33 to your computer and use it in GitHub Desktop.
Save jcdan3/87bd000609b827861d09dadeeed99f33 to your computer and use it in GitHub Desktop.
formatted code
package notifier
import "fmt"
type notifier struct {
name string
id int
}
func (n *notifier) notify() {
fmt.Println("Receiving notification from " + n.name)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment