<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="font-size:10pt"><p>It was not fun, and I thinked "If I can get rid of these mutable VARIABLES....". And in Java/PHP/Python I found the same problem here and again.</p>

</div></blockquote><div>But in such languages as C++/Java/... we are not forced to mutate variables so we can still employ some coding style/guidance of creating new objects instead of mutating existing objects most of the time.</div>

<div><br></div><div>For example in C++</div><div>  const int x1 = 1;</div><div>  const int x2 = x1 + 1;</div><div>...</div></div>
</div></div>