1 2 3 4 5 6 7 8
use ll_rs::init; use std::error::Error; fn main() -> Result<(), Box<dyn Error>> { init()?; Ok(()) }