<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html;
      charset=windows-1252">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    <p><br>
    </p>
    <br>
    <blockquote type="cite"
      cite="mid:A67AC9EC-5504-449C-A5B9-33BE0B43C699@gmail.com">
      <meta http-equiv="Content-Type" content="text/html;
        charset=windows-1252">
      <span style="background-color: rgb(255, 255, 255);" class=""><font
          class="" face="Monaco" color="#111111">
          <div class="">Does anyone have an example of another
            programming language that</div>
          <div class="">allows for addition of dictionaries/mappings?</div>
        </font></span><br>
    </blockquote>
    <br>
    kotlin does that (`to` means `:`)   : <br>
    <br>
    fun main() {<br>
        var a = mutableMapOf<String,Int>("a" to 1, "b" to 2)<br>
        var b = mutableMapOf<String,Int>("c" to 1, "b" to 3)<br>
        println(a)<br>
        println(b)<br>
        println(a + b)<br>
        println(b + a)<br>
    }<br>
        <br>
    <span class="standard-output darcula">{a=1, b=2}<br>
      {c=1, b=3}
      <br>
      {a=1, b=3, c=1}<br>
      {c=1, b=2, a=1}
    </span>
  </body>
</html>