package loops import "fmt" func Demo2() { for i := 1; i <= 10; i++ { fmt.Println(i) } fmt.Println("done\n") }