Created
March 9, 2021 07:03
-
-
Save velotiotech/02eef4d15f457da943702e6144e47ce9 to your computer and use it in GitHub Desktop.
This file contains 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
//create channel | |
c := make(chan int) | |
fmt.Printf("Type of `c`: %T\n", c) | |
fmt.Printf("Value of `c` is %v\n", c) | |
Type of `c`: chan int | |
Value of `c` is 0xc000022120 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment