Skip to content

Instantly share code, notes, and snippets.

@krancour
Created March 11, 2019 15:04
Show Gist options
  • Save krancour/7a570f751c33b54062544314de49bee2 to your computer and use it in GitHub Desktop.
Save krancour/7a570f751c33b54062544314de49bee2 to your computer and use it in GitHub Desktop.
func main() {
SayGreetings(
[]GreetingFn{
EnglishGreeting,
SpanishGreeting,
func(name string) error {
// If you're wondering, this is Klingon!
fmt.Printf("nuqneH, %s!\n", name)
return nil
},
},
"World",
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment