Skip to content

Instantly share code, notes, and snippets.

@maddyonline
Last active March 29, 2018 02:19
Show Gist options
  • Save maddyonline/e6a8bf47939bbf4e7c0d to your computer and use it in GitHub Desktop.
Save maddyonline/e6a8bf47939bbf4e7c0d to your computer and use it in GitHub Desktop.
Golang
package main
import "io"
import "os"
import "strings"
import "bytes"
func main() {
r1 := strings.NewReader("Hello")
r2 := bytes.NewReader([]byte(" World!"))
io.Copy(os.Stdout, r1)
io.Copy(os.Stdout, r2)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment