puts funcs in a map in go
package main
import (
"fmt"
)
//Go program that uses functions closure style inside maps
//makes a map and calls a func from it
func main() {
funcholder := make(map[string]func(a,b int) int)
funcholder["three"] = func(a,b int) int {return a+b}
fmt.Println(funcholder["three"](3, 4))
}
//prints 7