• Lasherz@lemmy.world
    link
    fedilink
    arrow-up
    4
    ·
    6 hours ago

    I feel like this well represents one of my first coding mistakes in VB, right before I started way overusing conversion calls

    • JasonDJ@lemmy.zip
      link
      fedilink
      arrow-up
      1
      ·
      5 hours ago

      I asked python to do this, and it checks out…

      a = "123"
      b = "456"
      c = a + b
      print(c)
      123456