* sh.c (sh_can_use_simple_return_p): Return false for SHmedia
[official-gcc.git] / libgo / go / sort / example_test.go
blobf57d02546f79aecc82e788ad2ede8ab01a3e7a66
1 // Copyright 2011 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 package sort_test
7 import (
8 "fmt"
9 "sort"
12 func ExampleInts() {
13 s := []int{5, 2, 6, 3, 1, 4} // unsorted
14 sort.Ints(s)
15 fmt.Println(s)
16 // Output: [1 2 3 4 5 6]