<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/3.16.1">
</HEAD>
<BODY>
<BR>
On Sat, 2008-03-29 at 12:13 -0700, Walter Bright wrote:<BR>
<BLOCKQUOTE TYPE=CITE>
    <TT><FONT COLOR="#000000">It's like (well, not as bad as) exchanging the </FONT></TT><BR>
    <TT><FONT COLOR="#000000">meaning of the * and + operators.</FONT></TT><BR>
</BLOCKQUOTE>
We do this already...well not with arithmetic thank god, but with other operators.<BR>
<BR>
Take the infamous concatenation operator...<BR>
<BR>
PHP and Perl it's &quot;.&quot;<BR>
Pascal, Ruby, Pike, Python, Java, JavaScript, (and kind of in C++) it's &quot;+&quot;<BR>
SQL and REXX it's &quot;||&quot;<BR>
VB, Ada, AppleScript it's &quot;&amp;&quot;<BR>
<BR>
but in D it's &quot;~&quot;....<BR>
<BR>
But in other languages, such as perl and AWK, ~ means something.&nbsp; It means &quot;bind&quot;, as bind this regular expression:<BR>
<BR>
# awk<BR>
if (foo ~ bar) {<BR>
}<BR>
<BR>
# perl<BR>
if ($foo ~= $bar) {<BR>
}<BR>
<BR>
Similarly, this expression in AWK means something completely different in D:<BR>
<BR>
foobar = foo ~ bar;<BR>
<BR>
That being said, it doesn't really matter...it's a different language.<BR>
<BR>
Just like how &quot;puede&quot; means &quot;it can&quot; in spanish, but it means &quot;can I&quot; in tagalog.<BR>
<BR>
Anyway to that end, I don't think redefining const or creating a different work to mean const is any different than this.&nbsp; And it's a perfectly acceptable thing to do.&nbsp; After all, we're really trying to make &quot;const&quot; mean &quot;from your view, this thing is constant&quot; anyway, that's what it implies.<BR>
<BR>
Cheers,<BR>
&nbsp;&nbsp;&nbsp; Scott S. McCoy
</BODY>
</HTML>