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.3 required=5.0 tests=BAYES_00, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 Path: eternal-september.org!reader01.eternal-september.org!feeder.eternal-september.org!aioe.org!.POSTED.Ry1GfOCil8z4iThfpbQjlA.user.gioia.aioe.org!not-for-mail From: "Nasser M. Abbasi" Newsgroups: comp.lang.ada Subject: Re: Ada++ Date: Thu, 28 May 2020 23:38:16 -0500 Organization: Aioe.org NNTP Server Message-ID: References: <50711230-5b14-4278-b9d8-d197bbe3c93b@googlegroups.com> <9320040f-5486-4d1e-847d-f81b0a59fcfa@googlegroups.com> Reply-To: nma@12000.org NNTP-Posting-Host: Ry1GfOCil8z4iThfpbQjlA.user.gioia.aioe.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: abuse@aioe.org User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.7.0 X-Notice: Filtered by postfilter v. 0.9.2 Content-Language: en-US Xref: reader01.eternal-september.org comp.lang.ada:58840 Date: 2020-05-28T23:38:16-05:00 List-Id: On 5/28/2020 11:17 PM, Wesley Pan wrote: > ...developers!) and to fix things like string types. Yes, for example Ada is one of few language still does not have multine raw string support. (may be also Fortran) https://en.wikipedia.org/wiki/Here_document Check also https://rosettacode.org/wiki/Here_document "A here document (or "heredoc") is a way of specifying a text block, preserving the line breaks, indentation and other whitespace within the text." See the Ada answer above "Ada has neither heredocs nor multiline strings. A workaround is to use containers of strings:" Python, Perl, ruby, even C++11 added multine raw string and more languages. --Nasser