aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/bytes/example_test.go
blob: 02da1ac082bd984315e3b02db1f1ce91b29e1ad8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package bytes_test

import (
	. "bytes"
	"encoding/base64"
	"io"
	"os"
)

// Hello world!
func ExampleBuffer() {
	var b Buffer // A Buffer needs no initialization.
	b.Write([]byte("Hello "))
	b.Write([]byte("world!"))
	b.WriteTo(os.Stdout)
}

// Gophers rule!
func ExampleBuffer_reader() {
	// A Buffer can turn a string or a []byte into an io.Reader.
	buf := NewBufferString("R29waGVycyBydWxlIQ==")
	dec := base64.NewDecoder(base64.StdEncoding, buf)
	io.Copy(os.Stdout, dec)
}