Hi Cafe,
can I ask the compiler to display the type of an inferred value during compile time?
It would be great if I can output a string during compilation with the type.
A little bit like running :type in GHCi, but without GHCi... Because running GHCi is sometime painful (I have to clean my code first).
I'm thinking of something like:
main :: IO ()
main = do
a <- someCode
displayTypeAtCompileTime a
return ()
$ ghc -c test.hs
test.hs:4:3: your type is: Foo
Thanks,
Corentin