use crate::lcs::diff; mod matrix; mod lcs; fn main() { let a = "let a = \"ABCDE\";"; let b = "let b = \"ABCDE\";"; diff(a, b); }