atomwrite 0.1.25

Atomic file operations CLI for LLM agents — read, write, edit, search, replace with NDJSON output
Documentation
/// Doc comment for the module
// Line comment
/* Block comment */
/* Multi-line
   block comment */

#[derive(Debug, Clone)]
pub struct MyStruct {
    pub field: String,
}

pub fn public_fn() -> String {
    let msg = "hello world";
    println!("{}", msg);
    msg.to_string()
}

fn private_fn() -> i32 {
    42
}

#[test]
fn test_example() {
    assert_eq!(1 + 1, 2);
}