gabelang 3.1.0

A high level, interpretted and garbage collected programming language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fn Counter() {
    let count = 0;
    fn increment() {
        count = count + 1;
        return count;
    }
    return increment;
}

let counter = Counter();

while(counter() < 10) {}

counter()