bdbt_annotator 0.2.1

TUI-based code change reviewer for browsing diffs and adding annotations
diff --git a/src/main.rs b/src/main.rs
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,8 +1,12 @@
 use std::io;
+use std::collections::HashMap;

 fn main() {
-    println!("Hello, world!");
-    let x = 42;
+    println!("Hello, annotator!");
+    let mut data: HashMap<String, i32> = HashMap::new();
+    data.insert("key".to_string(), 42);
+
+    for (k, v) in &data {
+        println!("{}: {}", k, v);
+    }
 }
diff --git a/src/lib.rs b/src/lib.rs
--- /dev/null
+++ b/src/lib.rs
@@ -0,0 +1,5 @@
+pub fn add(a: i32, b: i32) -> i32 {
+    a + b
+}
+
+pub fn multiply(a: i32, b: i32) -> i32 { a * b }