package main import "fmt" func main() { i :=0 for i < 10{ fmt.Println(i) i =i +1 } for i := 0; i <10; i++{ fmt.Println(i) } }