initpy / go-book

A book for learning the Go Programming Language
http://go-book.appspot.com/
115 stars 30 forks source link

Advance Composite types: Slices #45

Open sugatang-itlog opened 10 years ago

sugatang-itlog commented 10 years ago

var array [10]byte{'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j'}

should be

var array = [10]byte{'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j'}