We all know that :t in ghci gives the type of an expression:
Prelude> :t [1..]
[1..] :: (Enum t, Num t) => [t]
What I need is an equivalent of :t in haskell script(I'll call it typeStr) :
main = putStrLn $ typeStr [1..]
that can print something like (Enum t, Num t) => [t] on screen.
Is that possible?
:set +tat the ghci prompt: it will subsequently tell you the types of expressions you enter when normally it would only tell you their values. – dave4420 Feb 25 at 9:44:t... – Javran Feb 25 at 10:51