Skip to content

Instantly share code, notes, and snippets.

@jakswa
Created October 5, 2011 03:52
Show Gist options
  • Save jakswa/1263579 to your computer and use it in GitHub Desktop.
Save jakswa/1263579 to your computer and use it in GitHub Desktop.
this program prints out: HOLY FUNKY FUNC!
package main
import "fmt"
func funky() func() func() func() {
return func() func() func() {
return func() func() {
return func() {
fmt.Println("HOLY FUNKY FUNC!")
}
}
}
}
func main() {
funky()()()()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment