Created
September 27, 2021 15:22
-
-
Save Israel-Miles/f214c4ec09378aab0f0d7878a5aa6054 to your computer and use it in GitHub Desktop.
This file contains hidden or 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() { | |
channel := make(chan string) | |
// The channel blocks on receiving a message before the message is sent | |
fmt.Println(<-channel) | |
channel <- "Sending message to channel" | |
// The channel blocks on sending a message before the message can be received | |
channel <- "Sending message to channel" | |
fmt.Println(<-channel) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment