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,5de3fcabfe0474f0 X-Google-Attributes: gid103376,public From: Unknown@unknown.com Subject: Re: Running ADA code compiled for NT/Intel on a NT/Alpha Date: 1997/07/26 Message-ID: <33da698d.0@207.71.36.3>#1/1 X-Deja-AN: 259154994 References: <33da134d.6264788@news-s01.ny.us.ibm.net> Newsgroups: comp.lang.ada Date: 1997-07-26T00:00:00+00:00 List-Id: In article <33da134d.6264788@news-s01.ny.us.ibm.net>, gfrenoy@ibm.net wrote: > > We have compiled this small thing with 2 different ADA compiler >(VADSself 6.2.1 and ObjectAda 7.0) on a NT/Intel : > >with text_io; >procedure hello is > text_io.put_line ("Hello!"); >end hello; > If you cut-and-paste this snippet from your actual code, you are missing a "begin" with text_io; procedure hello is BEGIN -- << << << -- Missing text_io.put_line ("Hello!"); end hello;