What’s your opinion on prorgamming languages that separate lines with semicolons or those that just use a line break?

  • @AgreeableLandscapeOP
    link
    2
    edit-2
    4 years ago

    Except Python is still whitespace sensitive with semicolons, so in an indented block you have to do something like function1(); function2(). In the terminal it works fine though.

    Honestly, I wish they did what Ruby did and just used the end keyword.

    • @wraptile
      link
      34 years ago

      Personally I hate end keywords - seems like a such an antipattern. I’ve been using jinja html templating language for most web stuff and the end keywords caused so much headache in my career and are really ugly.