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.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM,XPRIO autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,b46d62f4a7f83cd9,start X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!news4.google.com!news1.google.com!news.germany.com!news.belwue.de!kanaga.switch.ch!switch.ch!newsfeed-du-01.pub.2nd.sunrise.ch!not-for-mail From: "[Taz]" Newsgroups: comp.lang.ada Subject: problem with command line Date: Thu, 11 Jan 2007 01:08:48 +0100 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2900.3028 X-RFC2646: Format=Flowed; Original X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3028 Message-ID: <45a58068$0$3828$5402220f@news.sunrise.ch> Organization: TDC Switzerland AG, http://www.sunrise.ch NNTP-Posting-Host: 89.217.155.151 X-Trace: 1168474216 news.sunrise.ch 3828 89.217.155.151:7664 X-Complaints-To: abuse@sunrise.ch Xref: g2news2.google.com comp.lang.ada:8104 Date: 2007-01-11T01:08:48+01:00 List-Id: hi, I have a problem with the command line ... I declare two variables like in the code below. If the call to my file don't have parameter, I get a error ... How can I solve this? ... procedure Test is Nome1 : String := Argument (1); Nome2 : String := Argument (2); ...