simple-diff icon indicating copy to clipboard operation
simple-diff copied to clipboard

A simple diff algorithm in pure OCaml

Results 4 simple-diff issues
Sort by recently updated
recently updated
newest added

Might be related to: #4 ``` Diff.get_diff ([|"dzien"; "dobry"; "z"; "tej"; "strony"; "kuba"; "jestem"; "wirtualnym"; "doradcą"; "dzwonię"; "w"; "ważnej"; "kwestii"; "zajmę"; "dosłownie"; "kilka"|]) [|"dzien"; "dobry"; "z"; "tej"; "strony"; "kuba"; "jestem";...

Since I don't know how to run test so I didn't add a test case, you can reproduce the bug with such code below: ```ml let result = Diff.get_diff [|...

Hi there, @hannesm! I'm trying to ship my first ocaml package but getting stuck on the testing part. I want to write a test for `Main.get_diff` (I will rename the...