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=-1.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,b50bc6538a649497 X-Google-Attributes: gid103376,public From: Frank Christiny Subject: Here we go again (Was: if statements) Date: 2000/11/11 Message-ID: <16427D07863F0A45.B110CE32664BCB78.E82CBFDD3EAEB45F@lp.airnews.net>#1/1 X-Deja-AN: 692451927 Content-Transfer-Encoding: 7bit References: <3A02CED4.520C2768@brighton.ac.uk> <20001110010959.29710.00000734@ng-cu1.aol.com> X-Orig-Message-ID: <3A0D8AA9.3543C9E6@pdq.net> X-Accept-Language: en,es Content-Type: text/plain; charset=us-ascii NNTP-Posting-Time: Sat Nov 11 12:03:39 2000 Organization: PDQ.net (using Airnews.net!) NNTP-Proxy-Relay: library1-aux.airnews.net Mime-Version: 1.0 Abuse-Reports-To: abuse at pdq.net to report improper postings Newsgroups: comp.lang.ada Date: 2000-11-11T00:00:00+00:00 List-Id: Another example of someone who doesn't bother to read a thread before posting. Who said Ada programmers where better prepared than other programmers? How many more of these guys exist out there doing profesional work? Now, I am scared... -- Frank Christiny fchris@pdq.net Sr. Software Engineer Lockheed Martin Space Operations Houston, Texas, USA http://freeweb.pdq.net/fchris/ DJack143 wrote: > > if you have not gotten a reply yet: > > Make the declaration: > > a, b, temp : type -- whatever you type is > > begin > ---your code here > if a > b then > temp =: a; > a := b; > b := temp; > end if; > ... -- more code here > end; > > --this will work but a procedure would probably be better. > > good luck > > don