Fixes typo of 'fmt'

This commit is contained in:
Brian Luft 2012-10-11 10:43:57 -07:00
parent 327bfe6520
commit e8ad73da56

View File

@ -13,7 +13,7 @@ func main() {
// the builtin `make`. Here we make a slice of `int`s
// of length `5` (initially empty-valued).
s := make([]int, 5)
mt.Println("emp:", s)
fmt.Println("emp:", s)
// We can set and get just like with arrays.
s[4] = 100