aboutsummaryrefslogtreecommitdiffstats
path: root/progs/tests/auto/simple_continue.sy
blob: 3e26e6c6901f73464bc2b51e7b8b4b96a76bc777 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
start :: fn {

    a := 0
    for i := 0, i < 4, i += 1 {
        if i == 2 {
            continue
        }
        a = a + 1
    }
    a <=> 3

}