aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/strings/example_test.go
blob: 16e53678b20c71da9c8c5a6f9307f0454eef7d69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2012 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package strings_test

import (
	"fmt"
	"strings"
)

// Fields are: ["foo" "bar" "baz"]
func ExampleFields() {
	fmt.Printf("Fields are: %q", strings.Fields("  foo bar  baz   "))
}