Skip to content

Instantly share code, notes, and snippets.

@lamarmarshall
Created October 25, 2017 04:31
Show Gist options
  • Save lamarmarshall/889b5eda6030d680ec9867f64b10072b to your computer and use it in GitHub Desktop.
Save lamarmarshall/889b5eda6030d680ec9867f64b10072b to your computer and use it in GitHub Desktop.
go inline function, closure
package main
import "fmt"
func main() {
sayname := func() string {
return "may name is lamar"
}
fmt.Printf("%v \n", sayname())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment