DEV Community

Discussion on: 10 practices for writing readable code

Collapse
 
mnivoliez profile image
mnivoliez

I usually like language that allow some optional type (like Rust or C++ through union types). It's a good element to indicate that "this piece of code may return in case all condition for it to appear are met". Same goes with other element.
This article is good and it's match perfectly with my obsession with semantic: the meaning should be directly observable from the code.