If you're going to do this to prevent excessively long lines, do it like this:
logShow
:: forall a eff
. Show a
=> a
-> Eff (console :: CONSOLE | eff) Unit
So the type starts indented on the next line and each line starts with the symbol.
Unicode version:
logShow
∷ ∀ a eff
. Show a
⇒ a
→ Eff (console :: CONSOLE | eff) Unit
logShow a = log (show a)
If you're going to do this to prevent excessively long lines, do it like this:
So the type starts indented on the next line and each line starts with the symbol.
Unicode version: