Files
exercises-in-programming-style/24-declared-intentions/README.md
crista 13582e4dec Update README.md
Renumbering
2013-11-28 21:12:14 -08:00

19 lines
335 B
Markdown

Style #24
==============================
Constraints:
- Existence of a run-time typechecker
- Procedures and functions declare what types of arguments they expect
- If callers send arguments of types that are't expected, the
procedures/functions are not executed
Possible names:
- declared intentions
- "You've been warned!"