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 X-Google-Thread: 103376,b50bc6538a649497 X-Google-Attributes: gid103376,public From: Alejandro Villanueva <190921@cepsz.unizar.es> Subject: Re: if statements Date: 2000/11/08 Message-ID: <3A09A13F.CE7DF6EF@cepsz.unizar.es>#1/1 X-Deja-AN: 691310883 Content-Transfer-Encoding: 8bit References: <8tvbcq$8201@news.cis.okstate.edu> <8u505a$9ic1@news.cis.okstate.edu> Content-Type: text/plain; charset=iso-8859-1 X-Complaints-To: usenet@news.unizar.es X-Trace: news.unizar.es 973710732 32251 155.210.155.32 (8 Nov 2000 19:12:12 GMT) Organization: Universidad de Zaragoza Mime-Version: 1.0 NNTP-Posting-Date: 8 Nov 2000 19:12:12 GMT Newsgroups: comp.lang.ada Date: 2000-11-08T19:12:12+00:00 List-Id: Alejandro R. Mosteo wrote: > Hello. Here in Spain, my university (in Zaragoza) uses Ada as the > programming languaje in several subjects (all of them half academic > year duration): > Well, if you see my address you will see that I'm from the same Uni that you... My final project is also with Ada95 running under RTEMS (the degree is industrial engineering, 5-year long) And now... procedure Swap (A, B: in out Integer) is C: Integer; begin if A > B then C := B; B := A; A := C; end if; end Swap; please, we are here to help other people... isn't it???? > > Introducction to programming. > Algorithm schemes. (Perhaps bad translating here...) > Data structures and algorithms. > Concurrent programming. > Real time systems. > > Perhaps I forget even more (the career is computing engineering, five > years long). > > Cheers, > > A. Mosteo. > > > When I first read the question, I wondered which university was teaching > > basic programming with Ada. I remember when I first looked at Ada knowing > > QBasic, and C (with no formal programming training), I would have regarded > > that question as trivial. If he is learning Ada by himself, I fear that > > more questions like this will follow and few groups can accept the many > > basic questions of a beginner who has found someone who can answer his > > questions for him. -- ------------------------------------------------------ �Quieres Cobrar por Navegar en Internet? Visita: http://www.navegana.com/dinero/flintstone.html ------------------------------------------------------ Alejandro Villanueva 190921@cepsz.unizar.es ------------------------------------------------------