“Go canal” Réponses codées

Go canal

package main
import "fmt"

func main() {
  
  // create channel of integer type
   number := make(chan int)
 
  // access type and value of channel
  fmt.Printf("Channel Type: %T\n", number)
  fmt.Printf("Channel Value: %v", number)

}
SAMER SAEID

Golang fait Chan

ch <- v    // Send v to channel ch.
v := <-ch  // Receive from ch, and
           // assign value to v.
Bright Booby

Réponses similaires à “Go canal”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code