Created
November 2, 2022 00:27
-
-
Save lalizita/ccdca623890eba67c9a6fa01c4116e24 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() { | |
x := sumNumber() | |
fmt.Println(x()) | |
fmt.Println(x()) | |
} | |
func sumNumber() func() int { | |
number := 1 | |
return func() int { | |
number++ | |
return number | |
} | |
} | |
// OUTPUT | |
// 1 | |
// 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
OUTPUT is
2 and 3