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-Thread: 103376,5e54ec0ce937978,start X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!postnews.google.com!e65g2000hsc.googlegroups.com!not-for-mail From: Gerd Newsgroups: comp.lang.ada Subject: String literals and wide_string literals - how? Date: 20 Apr 2007 03:07:45 -0700 Organization: http://groups.google.com Message-ID: <1177063665.093083.241580@e65g2000hsc.googlegroups.com> NNTP-Posting-Host: 80.254.135.49 Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: posting.google.com 1177063665 12344 127.0.0.1 (20 Apr 2007 10:07:45 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Fri, 20 Apr 2007 10:07:45 +0000 (UTC) User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.8.1.3) Gecko/20070309 Firefox/2.0.0.3,gzip(gfe),gzip(gfe) Complaints-To: groups-abuse@google.com Injection-Info: e65g2000hsc.googlegroups.com; posting-host=80.254.135.49; posting-account=_FaVAg0AAAAYUPoPAQYNRFF35JBHf9i7 Xref: g2news1.google.com comp.lang.ada:15143 Date: 2007-04-20T03:07:45-07:00 List-Id: Hi all, if I have a string, then I can write a literal simply by writing "abcd". But if I want write a wide_string literal, how do it? Assume I have two procedure of the form: procedure do_anything (s : string); procedure do_anything (w : wide_string); then do_anything ("abcd"); would call the first one. What would one write to call the second one? Is there something like the L"xxx" in C? Gerd