标签: haskell
我在.hs文件中编写代码,所以我想在main中打印表达式的类型。假设我有以下代码:
main :: IO () main = do ... let l = fmap getFirstElem listOfURL print (:type l)) --print the type of l
是否有相当于:GHCi Prelude中的类型?