Skip to content

Instantly share code, notes, and snippets.

@monkrus
Created August 20, 2021 08:32
Show Gist options
  • Select an option

  • Save monkrus/3b22675bd031c119e7bfffdd03d0dc0a to your computer and use it in GitHub Desktop.

Select an option

Save monkrus/3b22675bd031c119e7bfffdd03d0dc0a to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
)
func numberDoor(number int) {
func() {
fmt.Println(number)
}()
}
func main() {
numberDoor(10)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment