cypress 0.3.0

Build simple yet expressive parsers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
let x = 10
let y = 0

while x > 0 {
    if x % 2 == 0 {
        y = y + x
    } else {
        y = y - 1
    }
    x = x - 1
}

print(y)