gruggers 0.5.1

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

    while i < 2 {
        nothing()

        i = i + 1

        continue

        nothing()
    }
}