Created
June 5, 2022 11:07
-
-
Save narenaryan/a03c3d62578fe9142f53787d5c552317 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
package main | |
import ( | |
"bytes" | |
"fmt" | |
"strings" | |
) | |
func main() { | |
// Create a reader | |
r := strings.NewReader("Hello Medium") | |
// Create a writer | |
var b bytes.Buffer | |
// Pull data | |
b.ReadFrom(r) | |
// Optional: verify data | |
fmt.Println(b.String()) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment