Remix.run Logo
marcosdumay a day ago

Looks at 11 languages, ignores Haskell or anything really different...

jfengel a day ago | parent | next [-]

Once I learned Haskell, everything else looks pretty much identical. Java, C, C++, Smalltalk... At least Lisp looks a little bit different.

a day ago | parent | prev | next [-]
[deleted]
librasteve a day ago | parent | prev [-]

or Raku

jasperry a day ago | parent [-]

Those are functional languages that generally don't use statements, so it makes sense to leave them out of a discussion about statement separators. If you think more people should use functional languages and so avoid the semicolon problem altogether, you could argue that.

marcosdumay a day ago | parent | next [-]

Yet, the author ends with a half-backed clone of the Haskell syntax.

Blikkentrekker a day ago | parent | prev [-]

Functional hardly matters Haskell has plenty of indentation which is by the way interchangeable with `{ ... }`, one can use both at one's own pleasure and it's needed for many things.

Also, famously `do { x ; y ; z }` is just syntactic sugar for `x >> y >> z` in Haskell where `>>` is a normal pure operator.