<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <div class="moz-cite-prefix">I think he meant to say any language
      that doesn't let him use "." as the concatenation operator (a
      sentiment which I have some sympathy with), personally if I were
      in the perl6 world, I have a feeling I'd go with the join syntax
      over having to use ~ for string concat (e.g. say ["this"," that","
      and the other"].join;) but I'm not sure... it is a lot more typing
      and feels less perlish (though so does not having dot for the
      concat operator :P.<br>
      <br>
      <div class="moz-signature">Robert Flach<br>
        <b>Web Tools</b><br>
      </div>
      On 9/11/2014 4:19 PM, Patrick R. Michaud wrote:<br>
    </div>
    <blockquote cite="mid:20140911211907.GB22438@pmichaud.com"
      type="cite">
      <pre wrap="">On Thu, Sep 11, 2014 at 03:29:38PM -0500, Tommy Butler wrote:
</pre>
      <blockquote type="cite">
        <pre wrap="">Any language that makes me use a plus sign for string concat... *ducks*
</pre>
      </blockquote>
      <pre wrap="">
Which language would that be?  ;-)

Perl 6 uses the tilde for concatenation, and as a string contextualizer:

   say  "hello" ~ " world";

   my $a =  ~(3*5+7);      # sets $a to string "22"

Pm
_______________________________________________
Dfw-pm mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Dfw-pm@pm.org">Dfw-pm@pm.org</a>
<a class="moz-txt-link-freetext" href="http://mail.pm.org/mailman/listinfo/dfw-pm">http://mail.pm.org/mailman/listinfo/dfw-pm</a>
</pre>
    </blockquote>
    <br>
  </body>
</html>