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,62d0bf1a20956011 X-Google-Attributes: gid103376,public From: jos� tolentino Subject: Re: Help! I need help with GNAT! Date: 1997/10/08 Message-ID: <343B4CDC.1364@mail.telepac.pt>#1/1 X-Deja-AN: 278677570 References: <343b2226.279146@news.mindspring.com> Newsgroups: comp.lang.ada Date: 1997-10-08T00:00:00+00:00 List-Id: Herman wrote: > > I have a school project due at the end of the week, and I was > wondering if anyone here could PLEASE tell me how to use GNAT. I > don't have time to sift through manuals of documentation, I just need > to know what kind of 3 letter extension to save the source code files > is, how to compile, and the different compiling options I need. And > is there a debugger? Thanks! > > ------------------------------------ > Change spamsux to johnson64 to email hello The extension of Ada files is adb for ada body files, and ads for ada specification files. You can try gcc -c -gnatc filename.abd or filename.ads for compile. gnatmake filename will produce an executable. Bye