• marcos@lemmy.world
      link
      fedilink
      arrow-up
      16
      arrow-down
      1
      ·
      1 year ago

      That deserves an “always has been” meme… But IMO, Ruby outperled Perl since the beginning.

      Perl doesn’t let you redefine the syntax so that you can write the same program multiple ways. All it does is to encourage multiple programs to have the same meaning.

      • AnUnusualRelic@lemmy.world
        link
        fedilink
        English
        arrow-up
        4
        ·
        1 year ago

        I never looked at Ruby, but that doesn’t seem like it would be great for readability (although maybe productivity).

      • exussum@lemmy.world
        link
        fedilink
        arrow-up
        2
        ·
        1 year ago

        And lets you easily write metal languages due to the way you can pass around blocks. Think configuration as code type stuff.

    • V H@lemmy.stad.social
      link
      fedilink
      arrow-up
      1
      ·
      1 year ago

      Ruby cribbed a whole lot of syntax from Perl from the very beginning. Most of the rest comes from Smalltalk, but Ruby got it’s multitude of two character “$” variables from Perl, it’s autosplit mode (-a -n -p switches, letting Ruby, like Perl “emulate Awk”), it’s regexp match captures going into $1, $2 etc. from Perl.