• driving_crooner@lemmy.eco.br
    link
    fedilink
    arrow-up
    6
    ·
    7 days ago

    What about case insensitive programming languages?

    Im a python programmer so I’m used to it, but my coworkers are SAS programmers that is case insensitive and they keep getting errors when trying to write python because of that.

      • starshipwinepineapple@programming.dev
        link
        fedilink
        arrow-up
        2
        ·
        21 hours ago

        Python is case sensitive. I think they’re saying their coworkers are writing case insensitive code which is causing errors (perhaps writing myFunction and then calling it via myfunction which would result in an undefined error)

    • pinball_wizard@lemmy.zip
      link
      fedilink
      arrow-up
      5
      ·
      edit-2
      7 days ago

      Ouch. Relying on case sensitivity is a lousy coding choice, anyway. No one is made better off by having a case change carry meaning.

      Edit: Before anyone asks, I like case convention as a courtesy, too. But my code doesn’t rely on it.