• LittleLordLimerick@lemm.ee
    link
    fedilink
    arrow-up
    4
    arrow-down
    4
    ·
    11 months ago

    I’m having a hard time envisioning a situation where testing my code requires a bunch of unused variables. Just don’t declare the variables until you’ve started writing the code that uses them…

    • Urik@lemmy.ca
      link
      fedilink
      arrow-up
      3
      ·
      11 months ago

      Most of the time you don’t write the code, you change it.

      I had tons of situations where I wanted to test deleting a code block which just happened to use an imported library, which the compiler is now complaining about because it’s no longer being used.

      • LittleLordLimerick@lemm.ee
        link
        fedilink
        arrow-up
        1
        ·
        11 months ago

        If that’s the problem, then I would just use something like goimports to auto fix the imports every time I hit save. I never even see those errors so they don’t bother me.