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.2 required=5.0 tests=BAYES_00,FROM_WORDY, INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,de8f2689ae15f00d X-Google-Attributes: gid103376,public From: "Ken Garlington" Subject: Re: return key Date: 2000/05/17 Message-ID: #1/1 X-Deja-AN: 624317119 References: <20000516143916.18417.qmail@web2906.mail.yahoo.com> X-Priority: 3 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 X-Complaints-To: abuse@flash.net X-Trace: news.flash.net 958524555 216.215.81.244 (Tue, 16 May 2000 19:49:15 CDT) Organization: FlashNet Communications, http://www.flash.net X-MSMail-Priority: Normal NNTP-Posting-Date: Tue, 16 May 2000 19:49:15 CDT Newsgroups: comp.lang.ada Date: 2000-05-17T00:00:00+00:00 List-Id: with Ada.Text_IO; procedure Test_Return is begin Ada.Text_IO.Put_Line("The value of ASCII.CR is " & Integer'Image(Character'Pos(ASCII.CR))); end Test_Return; ... The value of ASCII.CR is 13 I'm guessing that your problem is more complicated than knowing the answer to your question (e.g. "How come I can't read the 'return' key using Get_Line?"). ----- "Chopy" wrote in message news:20000516143916.18417.qmail@web2906.mail.yahoo.com... Hi, what is the function that translate the character "return" in ascii or integer ? I have tried value 10 and value 13 ... thanks Chopy