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,df854b5838c3e14 X-Google-Attributes: gid103376,public From: bobduff@world.std.com (Robert A Duff) Subject: Re: C/C++ knocks the .... Date: 1996/02/23 Message-ID: #1/1 X-Deja-AN: 140809998 references: <4g2r2r$ded@stc06.ctd.ornl.gov> <4gc1st$6qj@ux1.lmu.edu> organization: The World Public Access UNIX, Brookline, MA newsgroups: comp.lang.ada Date: 1996-02-23T00:00:00+00:00 List-Id: In article , John DiCamillo wrote: >That's not quite true: > I := X'SIZE; > >Looks like "POSTFIX" to me. (and syntactically hideous to >boot: overloading a "grouping" token as a separator token >--yech!) I agree with the "yech". (Although, the same thing is true in English -- the ' is used as an apostrophe and also as a quotation mark.) And it's an annoyance to compiler writer's, too. Consider: X: Character := Character'('z'); where the string '(' is *not* a character literal. Not a huge implementation problem, but still an annoyance. - Bob