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 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII X-Google-Thread: 103376,38fc011071df5a27 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-06-18 01:06:52 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!uio.no!ntnu.no!not-for-mail From: Preben Randhol Newsgroups: comp.lang.ada Subject: Re: Ideas for Ada 200X Date: Wed, 18 Jun 2003 08:06:52 +0000 (UTC) Organization: Norwegian university of science and technology Message-ID: References: <3EE7CC70.E1FD3A67@adaworks.com> <3EECA772.4B662024@adaworks.com> NNTP-Posting-Host: kiuk0152.chembio.ntnu.no Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Trace: tyfon.itea.ntnu.no 1055923612 8544 129.241.83.78 (18 Jun 2003 08:06:52 GMT) X-Complaints-To: usenet@itea.ntnu.no NNTP-Posting-Date: Wed, 18 Jun 2003 08:06:52 +0000 (UTC) User-Agent: slrn/0.9.7.4 (Linux) Xref: archiver1.google.com comp.lang.ada:39380 Date: 2003-06-18T08:06:52+00:00 List-Id: Russ wrote: > Simple, clear, only two characters, and no conflict with "/=". What do > you think? No I don't find :+ so clear. It is harder to read as it lacks the :=. But I find it hopeless to try find a syntax which saves off *one* whitespace for a 3 whitespace syntax. If you really need to type less and your editor cannot help you get a better editor. I use vim and I can do: proc and it write procedure for me and if I write Some_Long_Variable := Some it will write Some_Long_Variable or give me a chance to cycle through alternatives. So typing becomes less troublesome. Besides at the moment I'm testing my Ada macros for Vim which would make it possible for me to write: #proc and then the editor asks me for a procedure name and gives me: procedure Some_Name is begin <++> end Some_Name; (Where <++> is a point you can jump to by hitting Ctrl-J (<++> is then removed automatically)) -- �It's probably worth pointing out that C's pointer arithmetic is not only dangerous, and a significant source of errors, but it also makes programs run slower.� - James Kanze on comp.lang.ada,comp.lang.c++.moderated