Debugging | OCaml Programming | Chapter 6 Video 20

preview_player
Показать описание
Debugging is a dirty job, but you've gotta do it. Here are some tips.

Рекомендации по теме
Комментарии
Автор

You do not mention one important tool in debugging: GIT, if you maintain correct commit history you can go back to older versions where code work, and then find commit that make this bug (see `git bisect`), it easier to check for bug if you need analyze only 10 line make by one commit than whole source tree.

von_nobody