Input:
data Foo a b = a :+: b
(foo, bar, baz) = ((), (), ())
x =
foo
:+: bar
:+: baz
foo'
:+: bar'
:+: baz'
= x
Output:
data Foo a b = a :+: b
(foo, bar, baz) = ((), (), ())
x =
foo
:+: bar
:+: baz
foo' :+:
bar' :+:
baz' =
x
Is there any reason not to consistently place :+: at the beginning or at the end of a line?
Input:
Output:
Is there any reason not to consistently place
:+:at the beginning or at the end of a line?