nolo 0.1.1

A CLI tool for discovering and analyzing `TODO` comments across codebases.
Documentation
// Regular Rust comment
use std::collections::HashMap;

// TODO: Implement error handling
fn main() {
    let mut map = HashMap::new();
    map.insert("key", "value");

    // FIXME: This is inefficient
    for (k, v) in &map {
        println!("{}: {}", k, v);
    }

    /* NOTE: Consider using a different data structure */
    // HACK: Quick workaround for now
}

// BUG: Function doesn't handle empty input
#[allow(dead_code)]
fn process_data(data: &str) -> String {
    data.to_uppercase()
}
// TODO: Test Rust comment detection