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.
|
#![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)
|
|
{
|
|
Ok(rt) => println!("{:?}", rt),
|
|
Err(e) => println!("Run Error: {:?}", e),
|
|
}
|
|
}
|
|
Err(e) => println!("Error: {:?}", e),
|
|
};
|
|
|
|
}
|