qalam 0.3.1

Interpreter for the Qalam programming language. Qalam is a dead-simple, Urdu inspired, interpreted programming langauge.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
kaam make_counter() {
  rakho i = 0;
  kaam count() {
    i = i + 1;
    bolo i;
  }

  wapis count;
}

rakho counter = make_counter();
// Prints 1
counter();
// Prints 2
counter();