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 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,f51e93dacd9c7fca X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-06-17 14:40:33 PST From: Vinzent Hoefler Newsgroups: comp.lang.ada Subject: Re: status of Ada STL? Date: Mon, 17 Jun 2002 23:40:18 +0200 Organization: JeLlyFish software References: <3d0ce154_5@news.bluewin.ch> <3D0D4274.6C5E02F9@acm.org> X-Newsreader: Forte Agent 1.8/32.548 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit NNTP-Posting-Host: 62.202.185.126 Message-ID: <3d0e574c_2@news.bluewin.ch> X-Trace: news.bluewin.ch 1024350028 62.202.185.126 (17 Jun 2002 23:40:28 +0200) X-Complaints-To: abuse@bluewin.ch Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news.tele.dk!small.news.tele.dk!193.174.75.178!news-fra1.dfn.de!news-stu1.dfn.de!news.belwue.de!news.tesion.net!newsfeed-zh.ip-plus.net!news.ip-plus.net!news.bluewin.ch!not-for-mail Xref: archiver1.google.com comp.lang.ada:26186 Date: 2002-06-17T23:40:18+02:00 List-Id: Jeffrey Carter wrote: >Certainly ":=" is better than "=" for assignment, and replacing "=" with >"==" for equality is just stupid. But I've thought for decades that the >assignment symbol should not contain the "=" character at all. "<-" >would probably be good. Well. VHDL does it in a similar way to indicate signal assignments: Bus_Address (7 downto 0) <= "00000000"; But it's still using ":=" for variable assignments. I guess, this has a reason there... Vinzent.