neutron-engine 0.1.3

A lightweight markup parser for the Neutron styling language (.nt)
Documentation
use std::env;
use neutron_engine::iris;

fn main() {
    let args: Vec<String> = env::args().collect();
    
    if args.len() < 2 {
        println!("iris-runtime <file.iris>");
        println!("Run Iris script with standalone runtime.");
        return;
    }
    
    let path = &args[1];
    
    match iris::run_file(path) {
        Ok(_) => println!("✅ Iris runtime complete."),
        Err(e) => {
            eprintln!("❌ Iris error: {}", e);
            std::process::exit(1);
        }
    }
}