rust/src/main.rs
2025-01-18 20:53:11 +00:00

17 lines
287 B
Rust

//
mod kxio;
fn main() -> Result<(), Box<dyn std::error::Error>> {
println!("Hello, world!");
let rt = tokio::runtime::Runtime::new()?;
Ok(rt.block_on(crate::kxio::main())?)
}
#[cfg(test)]
mod tests {
#[test]
fn passes() {
println!("passes okay");
}
}