From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.5-pre1 (2020-06-20) on ip-172-31-74-118.ec2.internal X-Spam-Level: X-Spam-Status: No, score=-1.9 required=3.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.5-pre1 Date: 10 Sep 91 03:47:05 GMT From: eachus@mitre-bedford.arpa (Robert I. Eachus) Subject: Re: Ada micro Style for Programs in Introductory Textbooks Message-ID: List-Id: There are style guidelines which are customary, and style guidelines which are graven in linguistic stone. For example, in Ada there are many different layouts used for if statements, but everyone will flame you if you put "end" and "if;" on different lines. When it comes to Ada in textbooks, stick with reserved words in lower case boldface, identifiers in all capitals, and a fixed width font. In programming there is room for much more flexibility, but most Ada programmers cringe when faced with uppercase reserved words or lower case attributes. The rest is personal style. -- Robert I. Eachus with STANDARD_DISCLAIMER; use STANDARD_DISCLAIMER; function MESSAGE (TEXT: in CLEVER_IDEAS) return BETTER_IDEAS is...