qalam 0.3.1

Interpreter for the Qalam programming language. Qalam is a dead-simple, Urdu inspired, interpreted programming langauge.
Documentation
rakho has_wudu = jhoot;
rakho magrib_time_started = sach;
rakho age = 16;


agar(age >= 15 aur magrib_time_started aur has_wudu) {
  bolo("You MUST pray magrib now!");
} warna {
  agar(age < 15) {
    bolo("You are not baligh, you do NOT NEED to pray but you should!");
  } warna {
    agar(!has_wudu && magrib_time_started) {
      bolo("Go make wudu and pray magrib now!");
    } warna {
      agar(!magrib_time_started) {
        bolo("It is not time for magrib yet!");
      }
    }
  }
}