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,7f1b30a5ac78cf1 X-Google-Attributes: gid103376,public From: Niklas Holsti Subject: Re: Question in french (a simple question, very simple) Date: 1998/11/19 Message-ID: <365345E5.DC087FF9@icon.fi>#1/1 X-Deja-AN: 413281350 Content-Transfer-Encoding: 8bit References: <72ojbg$hm9$1@front2.grolier.fr> Content-Type: text/plain; charset=iso-8859-1 Organization: Space Systems Finland Ltd Mime-Version: 1.0 Newsgroups: comp.lang.ada Date: 1998-11-19T00:00:00+00:00 List-Id: Pierre wrote: > > Comment d�finir un type caract�re et son package d'entr�e-sortie !? with Ada.Text_IO; procedure CHART is type Marks_T is ('M', 'A', 'R', 'K', 'S', 'm', 'a', 'r', 'k', 's'); package Marks_IO is new Ada.Text_IO.Enumeration_IO (Marks_T); begin for M in Marks_T loop Marks_IO.Put (M); Ada.Text_IO.New_Line; end loop; end CHART;