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
use anyhow::Result;
use clap::Parser;
use qalam::args::Args;
use qalam::Qalam;

fn main() -> Result<()> {
    let args = Args::parse();
    let mut qalam = Qalam::init();
    return qalam.run(args);
}