Clean Code in Elixir
Posted on Fri 29 April 2016 in english
If you've ever read "Uncle Bob" Martin C. Fowler's Book Clean Code: A Handbook of Agile Software Craftsmanship there's an example in chapter 2 of what good (or bad) use of context means.
It reads as follows:
private void printGuessStatistics(char candidate, int count) {
String number;
String verb;
String pluralModifier …
Continue reading