Files
exercises-in-programming-style/23-passive-aggressive/README.md

17 lines
335 B
Markdown

Style #23
==============================
Constraints:
- Program should not proceed if preconditions aren't met or if errors occur
- Core program functions have no exception handling, not even the main function
- The final result should show the failure, if one occurred
Possible names:
- Passive aggressive
- Monadic Exceptions