ai-write 0.1.1

Macro inserting ChatGPT responses into rust code at compile-time
Documentation
1
2
3
4
5
6
7
8
// for testing puposes

use ai_write::ai_write_expr;

fn main(){
    ai_write_expr!("Create a variable called A which is assigned to 2");
    ai_write_expr!("Print hello world");
}