You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Igloo/src/main.rs

22 lines
281 B
Rust

#![allow(warnings)]
use igloo_core::Igloo;
fn main()
{
let mut ig = Igloo::new();
let _start_ret = match ig.start()
{
Ok(it) =>
{
match ig.run(it)
{
IS_GOOD => println!("success"),
_ => println!("??"),
}
}
Err(e) => println!("Error: {:?}", e),
};
}