diff options
author | Russ Cox <rsc@golang.org> | 2009-03-03 08:39:12 -0800 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2009-03-03 08:39:12 -0800 |
commit | 150fc635c53ef552024088ac65f82522b3626808 (patch) | |
tree | 028f4f1a5f6b78795c1a1ef840b49c7da342edd1 /doc/progs/print.go | |
parent | 4041d184e8f1e2123b1d32d5f39190d34f50ea7e (diff) | |
download | golang-150fc635c53ef552024088ac65f82522b3626808.tar.gz |
Automated g4 rollback of changelist 25024,
plus significant hand editing.
Back to T{x} for composite literals.
R=r
OCL=25612
CL=25632
Diffstat (limited to 'doc/progs/print.go')
-rw-r--r-- | doc/progs/print.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/progs/print.go b/doc/progs/print.go index 5f651d6d8..cc146fed8 100644 --- a/doc/progs/print.go +++ b/doc/progs/print.go @@ -12,8 +12,8 @@ func main() { // harder stuff type T struct { a int; b string }; - t := T(77, "Sunset Strip"); - a := []int(1, 2, 3, 4); + t := T{77, "Sunset Strip"}; + a := []int{1, 2, 3, 4}; fmt.Printf("%v %v %v\n", u64, t, a); fmt.Print(u64, " ", t, " ", a, "\n"); fmt.Println(u64, t, a); |