“Função anônima” Respostas de código

Função anônima

func () {
  fmt.Println("Function without name")
}
SAMER SAEID

Função anônima

package main
import "fmt"

func main() {

  // anonymous function
  var greet = func() {
    fmt.Println("Hello, how are you")
  }

  // function call
  greet()

}
SAMER SAEID

Funcionando da função Go Anonymous

//anonymous function
var greet = func (){
  // code
}

// function call
greet()
SAMER SAEID

Respostas semelhantes a “Função anônima”

Procure respostas de código populares por idioma

Procurar outros idiomas de código