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=-0.5 required=5.0 tests=BAYES_00,INVALID_MSGID, PP_MIME_FAKE_ASCII_TEXT autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII X-Google-Thread: 103376,335298c106f3b5a7 X-Google-Attributes: gid103376,public From: eachus@spectre.mitre.org (Robert I. Eachus) Subject: Re: Compiler performance Date: 1996/02/19 Message-ID: #1/1 X-Deja-AN: 140161788 references: <4fjplh$pim@nntpa.cb.att.com> <4fnl86$3f1@newsbf02.news.aol.com> organization: The Mitre Corp., Bedford, MA. newsgroups: comp.lang.ada Date: 1996-02-19T00:00:00+00:00 List-Id: In article <4fnl86$3f1@newsbf02.news.aol.com> johnherro@aol.com (John Herro) writes: > That can be a useful feature! It's a good way to put a copyright > notice into your executable code. In my Ada Tutor program, I declare > Legal_Note : constant String := " Copyright 1988-96 John J. Herro "; One of the nice features that comes along with Latin-1 as character is the ability to put Copyright_Notice: constant String := "�1996 Robert I. Eachus"; or whatever in your source files. I used to do that or a corporate claim all the time, but most of the software I have published at MITRE recently has been intentionally public domain, so I haven't had a chance to do it often. ;-) -- Robert I. Eachus with Standard_Disclaimer; use Standard_Disclaimer; function Message (Text: in Clever_Ideas) return Better_Ideas is...