Skip to content

Instantly share code, notes, and snippets.

@krancour
Created March 11, 2019 15:04
Show Gist options
  • Save krancour/eedd7767a700e827ca126d6ed89aaad0 to your computer and use it in GitHub Desktop.
Save krancour/eedd7767a700e827ca126d6ed89aaad0 to your computer and use it in GitHub Desktop.
func main() {
// The type of the greetingFn variable is func()
var greetingFn func() = EnglishGreeting
// The next line doesn't care what implementation of func() is used
greetingFn()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment