aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/golang.org/x/text/encoding/ianaindex/example_test.go
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2015-05-14 18:29:41 +0800
committerFelix Lange <fjl@twurst.com>2015-05-14 18:29:41 +0800
commite7c7b54b82e76f9da6caa44504486b28a662751d (patch)
tree96cb76e07775fa4a51f64c8df64842a3f04dd9b2 /Godeps/_workspace/src/golang.org/x/text/encoding/ianaindex/example_test.go
parent663d4e0aff4cad98a9c5b17de18b2385a5874f6c (diff)
downloadgo-tangerine-e7c7b54b82e76f9da6caa44504486b28a662751d.tar
go-tangerine-e7c7b54b82e76f9da6caa44504486b28a662751d.tar.gz
go-tangerine-e7c7b54b82e76f9da6caa44504486b28a662751d.tar.bz2
go-tangerine-e7c7b54b82e76f9da6caa44504486b28a662751d.tar.lz
go-tangerine-e7c7b54b82e76f9da6caa44504486b28a662751d.tar.xz
go-tangerine-e7c7b54b82e76f9da6caa44504486b28a662751d.tar.zst
go-tangerine-e7c7b54b82e76f9da6caa44504486b28a662751d.zip
Godeps: bump github.com/huin/goupnp to c57ae84
Diffstat (limited to 'Godeps/_workspace/src/golang.org/x/text/encoding/ianaindex/example_test.go')
-rw-r--r--Godeps/_workspace/src/golang.org/x/text/encoding/ianaindex/example_test.go26
1 files changed, 26 insertions, 0 deletions
diff --git a/Godeps/_workspace/src/golang.org/x/text/encoding/ianaindex/example_test.go b/Godeps/_workspace/src/golang.org/x/text/encoding/ianaindex/example_test.go
new file mode 100644
index 000000000..b30573216
--- /dev/null
+++ b/Godeps/_workspace/src/golang.org/x/text/encoding/ianaindex/example_test.go
@@ -0,0 +1,26 @@
+// Copyright 2015 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 ianaindex_test
+
+import (
+ "fmt"
+
+ "golang.org/x/text/encoding/charmap"
+ "golang.org/x/text/encoding/ianaindex"
+)
+
+func ExampleIndex() {
+ fmt.Println(ianaindex.MIME.Name(charmap.ISO8859_7))
+
+ fmt.Println(ianaindex.IANA.Name(charmap.ISO8859_7))
+
+ e, _ := ianaindex.IANA.Get("cp437")
+ fmt.Println(ianaindex.IANA.Name(e))
+
+ // TODO: Output:
+ // ISO-8859-7
+ // ISO8859_7:1987
+ // IBM437
+}