Skip to content

Instantly share code, notes, and snippets.

@axgle
Created November 17, 2009 12:31
Show Gist options
  • Select an option

  • Save axgle/236877 to your computer and use it in GitHub Desktop.

Select an option

Save axgle/236877 to your computer and use it in GitHub Desktop.
package main
import ("fmt")
func main(){
v:=func(a,b int) int{
return a+b;
}(1,2);
fmt.Printf("%v",v);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment