Last active
February 15, 2023 06:26
-
-
Save Mayankgupta688/90d257aafc3ef33716fb11cb38255545 to your computer and use it in GitHub Desktop.
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
package main | |
import "fmt" | |
func main() { | |
returnedData := func() func() { | |
return func() { | |
fmt.Println("Data Returned from Function") | |
} | |
}() | |
returnedData() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment