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
// Prints the first 21 elements of the fibonacci sequence
rakho a = 0;
rakho temp;

har(rakho b = 1; a < 10000; b = temp + b) {
  bolo a;
  temp = a;
  a = b;
}