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
kaam fib(n) {
  agar(n <= 1) wapis n;
  wapis fib(n - 2) + fib(n - 1);
}

// First 20 elements of the fibonacci sequence using recursion (very slow but who cares)
har(rakho i = 0; i < 20; i = i + 1) {
  bolo fib(i);
}