#[main]
Marks the main function to be executed by the lunatic runtime as the root process.
Note: The macro can only be used on main function with 1 argument of type Mailbox<T>.
main
Mailbox<T>
#[lunatic::main] fn main(_: Mailbox<()>) { println!("Hello, world!"); }