Ndless procedural macros for common tasks, such as marking the main function of the program. It will automatically store the command-line arguments, and mark the function as the entrance to the program.
```rust
extern crate ndless_handler;
use ndless::prelude::*;
fn main() { // Code } ```