Last active
June 5, 2022 11:20
-
-
Save narenaryan/dd3f7839423f4b7f0bbac91d3a03f37b 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 | |
// Push data | |
r.WriteTo(&b) // Don't forget & | |
// 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