----- CLOSURES ----- Pass a function to a function
(f func(int, int) int, x, y int)
| 268 | // ----- CLOSURES ----- |
| 269 | // Pass a function to a function |
| 270 | func useFunc(f func(int, int) int, x, y int) { |
| 271 | pl("Answer :", (f(x, y))) |
| 272 | } |
| 273 | |
| 274 | func sumVals(x, y int) int { |
| 275 | return x + y |