auto-rust
is an experimental project that aims to automatically generate Rust code with LLM (Large Language Models) during compilation, utilizing procedural macros.
```rust use auto_rust::implement;
implement!(fn is_email(input: Into
fn main() { let result = isemail("hello@minsky.cc"); asserteq!(result, true);
let result = is_email("hello@minsky");
assert_eq!(result, false);
} ```