part 1 - the information
According to Code Complete (Steve McConnell, Microsoft Press, 1993),
program design language (PDL) was originally described in a paper published
by Caine and Gordon in 1975.
Guidelines for effective use of PDL include:
- Use English*-like statements that precisely describe
specific operations
*or other spoken language
- Avoid synatic elements from the target programming language. Thinking
in programming language constructs eliminates the main benefit of design at
a higher level.
- Write at the level of intent. Describe the meaning of the approach,
rather than how the approach will be implemented in the particular
programming language.
- Write PDL at a low enough level that generating code from it will be
nearly automatic.
Benefits from using PDL:
- Reviews are easier - no need to examine source code.
- PDL supports iterative refinement - successive refinement in small
steps allows you to check design as you get more detailed.
- Changes are easier.
- Commenting is done for you - turn the PDL into comments.
- PDL is an easy-to-maintain form of design documentation.
part 2 - the query
This PDL stuff sounds pretty good to me - maybe it's just new to me
because I don't have any formal programming training. My background is in
science, and I picked up any "programming knowledge" I might possess as the
situations presented themselves.
I'm wondering, is PDL something that people actually use?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.