1
0
mirror of https://github.com/golang/go synced 2024-11-12 00:20:22 -07:00

encoding/binary: better example

leave that joke to Java.

R=golang-dev, adg
CC=golang-dev
https://golang.org/cl/5695080
This commit is contained in:
Brad Fitzpatrick 2012-02-28 10:15:23 +11:00
parent ce51e10749
commit fa33fdbc7d

View File

@ -25,9 +25,9 @@ func ExampleWrite() {
func ExampleWrite_multi() {
buf := new(bytes.Buffer)
var data = []interface{}{
uint16(61374),
int8(-54),
uint8(254),
uint16(48826),
}
for _, v := range data {
err := binary.Write(buf, binary.LittleEndian, v)
@ -36,7 +36,7 @@ func ExampleWrite_multi() {
}
}
fmt.Printf("%x", buf.Bytes())
// Output: cafebabe
// Output: beefcafe
}
func ExampleRead() {