• ℍ𝕂-𝟞𝟝
      link
      fedilink
      English
      38 hours ago

      Catching individual errors is fine. Having all errors be ignored by default is weird.

    • @locuester@lemmy.zip
      link
      fedilink
      English
      17 hours ago

      Very different. This means default ignore all errors and continue to the next line. You’d have to explicitly catch every line in most(all?) other languages.

    • Skull giver
      link
      fedilink
      17 hours ago

      Ignoring every exception, including divisions by zero, is something I’ve never seen outside of BASIC and shell scripting. Even C and assembly will shit themselves when you do some of the shit that ON ERROR RESUME NEXT will ignore.