Files
the-way-to-go_ZH_CN/eBook/exercises/chapter_5/i_undefined.go
2015-03-03 12:25:25 -05:00

15 lines
199 B
Go
Executable File

// i_undefined.go
package main
import (
"fmt"
)
func main() {
var i int
for i=0; i<10; i++ {
fmt.Printf("%v\n", i)
}
fmt.Printf("%v\n", i) //<-- compile error: undefined i
}