1use lustre_executor::prelude::*; 2 3fn main() { 4 let mut executor = Executor::new().unwrap(); 5 executor.spawn(Task::new(async { 6 println!("Hello from an async task!"); 7 })); 8 executor.run(); 9}