Does Go support lambda expressions or anything similar?
I want to port a library from another language that uses lambda expressions (Ruby).
Lambda expressions are also called function literals. Go supports them completely.
See the language spec: http://golang.org/ref/spec#Function_literals
See a code-walk, with examples and a description: http://golang.org/doc/codewalk/functions/