From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=0.6 required=5.0 tests=BAYES_20,FREEMAIL_FROM, INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,460493f73154cd,start X-Google-Attributes: gid103376,public From: joelngstn@aol.com (JoeLngstn) Subject: Sequential??? Date: 1999/01/23 Message-ID: <19990122210952.13232.00001307@ng125.aol.com>#1/1 X-Deja-AN: 435854889 Organization: AOL http://www.aol.com Newsgroups: comp.lang.ada X-Admin: news@aol.com Date: 1999-01-23T00:00:00+00:00 List-Id: My college Ada professor recently showed us some simple examples of string handling in which we used ada.text_io.get_line to get both the string and its length. We did this twice, once for first name, and again for last. We had a put procedure directly under the code where we got the last name that would display the length of the first name. (The first name was declared as string(1..10)) When the length of the first name was equal to ten, it would display that value before prompting for the last name, in effect, running the program out of order. Can anyone explain? If needed I will supply an example of source code that causes this. -Joey