• Captain Beyond@linkage.ds8.zone
    link
    fedilink
    arrow-up
    21
    ·
    edit-2
    22 hours ago

    Aaah so a backtick is for strings? WRONG!!! IT EXECUTES THE FUCKING COMMAND!!!

    To be fair this is what they do in Perl and shell scripts (and in PHP too), so it’s not unexpected behavior in that world.

    • HelloRoot@lemy.lol
      link
      fedilink
      English
      arrow-up
      8
      ·
      edit-2
      20 hours ago

      I’m way happier debugging “200 char wide class name + 50 line of boilerplate” code written in java that verbosely and expressively does the same thing compared to deciphering single symbol hieroglyphs in shell esque scripts where I have to pay attention which way the ticks are pointing.

    • Tanoh@lemmy.world
      link
      fedilink
      arrow-up
      8
      ·
      22 hours ago

      Yeah, you could very well argue that JS and others that use it for weird interpolated strings are the weird ones here.

      • Feathercrown@lemmy.world
        link
        fedilink
        English
        arrow-up
        1
        ·
        12 hours ago

        On the other hand, interpolated strings are fucking awesome and you need them every 5 seconds for UI work

        • Tanoh@lemmy.world
          link
          fedilink
          arrow-up
          2
          ·
          1 hour ago

          Sure, but in Perl and other languages there is a difference between "$foo" and '$foo'. In that the first expands the value of foo, while the other doesn’t.

          But usually if you need to write stuff in noisy strings, just use printf/sprintf. Or a <<HERE block.