Created
September 27, 2021 15:44
-
-
Save Israel-Miles/7f7fe32cd57f727f9304d3df6ddd3ac7 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 receiveFromChannel(ch <-chan string, wg *sync.WaitGroup) { | |
defer wg.Done() | |
if msg, ok := <-ch; ok { | |
fmt.Println("Channel status:", ok) | |
fmt.Println(msg) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment