thag_rs 0.1.1

A versatile script runner and REPL for Rust snippets, expressions and programs
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![allow(clippy::uninlined_format_args)]

use std::error::Error;
use thag_rs::{execute, get_args};

pub fn main() -> Result<(), Box<dyn Error>> {
    let args = get_args();
    execute(args)?;

    Ok(())
}