Skip to content

Instantly share code, notes, and snippets.

@utgwkk
Created September 26, 2015 03:32
Show Gist options
  • Save utgwkk/4965b130c59197408ced to your computer and use it in GitHub Desktop.
Save utgwkk/4965b130c59197408ced to your computer and use it in GitHub Desktop.
Goで関数内関数・グローバル変数に近いもの
package main
import "fmt"
func main() {
var c int = 10
hoge := func (a, b int) int {
return a + b + c
}
fmt.Println(hoge(2,3)) // 15
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment