17 lines
287 B
Rust
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");
|
|
}
|
|
}
|