gruggers 0.5.1

rust implementation of the grug language
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
on_a() {
    i: number = 0

    while true {
        nothing()
        while i != 2 {
            i = i + 1
            if (i == 1) {
                continue
            }
            nothing()
        }
        break
    }
}