this post was submitted on 10 Feb 2024
594 points (96.8% liked)
196
16423 readers
2199 users here now
Be sure to follow the rule before you head out.
Rule: You must post before you leave.
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
It's sometimes called comma-leading style where you move all the special characters to the front of the line and it is exceedingly common in Haskell, possibly due to how Haskell treats significant whitespace. You've surely seen list definitions that look like this:
or a data definition like this:
or a list of module exports like this:
Or in a long function type declaration where the arrows are moved to the start of the line, or a record definition, etc. etc.