Implementation of a small diff utility in Rust, mainly for practice purposes.
cargo run file_A.txt file_B.txt
The output will prefix lines that should be deleted (inserted) with - (+).
The diff uses a naive LCS algorithm that takes O(n²) time and space.