Hi,
Is it possible to ask GHC or other Haskell compiler to generate a
Haskell source file just after the processing of layout? I.e., I would
like to see this:
main = do
a <- some_function
Transformed into this:
main = do {a <- some_function;
I thought that would be usefull to understand better how layout works.
Thanks,
Maurício