Glossary

Best Practice — Procedure Size Guidelines

**A procedure should do one thing.** If you struggle to name it, it might be doing too much. - **A procedure should fit on one screen** (roughly 20–30 lines of code). If you need to scroll to see the whole thing, consider decomposing further. - **The main program body should be short** — ideally 5–1

Learn More

Related Terms