Created
November 2, 2022 00:41
-
-
Save lalizita/6c335d96f036a160801afab30104f666 to your computer and use it in GitHub Desktop.
Example of anonymous function with Go for a medium article
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func main() { | |
n := func() int { | |
return 2 | |
} | |
x := sumNumber(n()) | |
fmt.Println(x) | |
} | |
func sumNumber(number int) int { | |
number++ | |
return number | |
} | |
// OUTPUT | |
// 3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment