• Goun
      link
      fedilink
      arrow-up
      25
      arrow-down
      1
      ·
      10 months ago

      I’m sorry, I hate the “unless” so much

      • NotSteve_@lemmy.ca
        link
        fedilink
        arrow-up
        3
        ·
        10 months ago

        At one of my first jobs, I was tasked to rewrite a bunch of legacy Perl scripts in Python and the unless lines always made me trip up. I don’t know why but it really messed with my mental flow when reading Perl code

    • chaogomu@kbin.social
      link
      fedilink
      arrow-up
      11
      arrow-down
      1
      ·
      10 months ago

      Basic used “else”.

      It’s nice. “if”, “then”, and “else”. I spent a year programming a shitty roulette game on an Apple 2e back in high school. I still remember the joy of using if/then/else paired with goto to make a horrible mess of spaghetti logic.

      But yeah, “else” is nice.

      • SubArcticTundra
        link
        fedilink
        arrow-up
        7
        ·
        edit-2
        10 months ago

        Using a standalone ‘else’ would tickle my brain in the same nice way that being able to declare a variable inside an ‘if’ statement as if it were a ‘for’ loop (which you can do in modern C++) does.

          • SubArcticTundra
            link
            fedilink
            arrow-up
            3
            ·
            10 months ago

            Ooh yes. Rust is king when it comes to this sort of inline stuff. Inline match. Mmmmmm!

        • Lmaydev@programming.dev
          link
          fedilink
          arrow-up
          2
          ·
          10 months ago

          Many languages let you scope variables.

          In c# you can create an arbitrary scope to declare variables in. Most likely in others as well.

          • SubArcticTundra
            link
            fedilink
            arrow-up
            2
            ·
            10 months ago

            Ah clever, didn’t think of doing this. Not having to encapsulate if statements in scopes would still look cleaner though

            • Lmaydev@programming.dev
              link
              fedilink
              arrow-up
              1
              ·
              edit-2
              10 months ago

              It’s handy if you’re creating temp variables for single use that you don’t need to use again.

              Although I admit I’ve only ever done it a couple times lol

              Again in c# you can omit the scope and only the next statement is part of an if or loop.

    • EnderMB@lemmy.world
      link
      fedilink
      arrow-up
      7
      ·
      10 months ago

      I haven’t written any Ruby for years, but I still praise it in every conversation I have regarding programming languages. It’s basically a much simpler Python, with some design ideas that are both beautiful and deeply strange.

      • OskarAxolotl@lemmy.world
        link
        fedilink
        arrow-up
        3
        ·
        10 months ago

        Ruby was designed to evoke joy and they absolutely succeeded. Usually, programming is mostly a means to an end to me. But using Ruby just feels so amazing, it’s almost impossible to even describe to somebody who has never used it before.