6.12.1環境で
import Data.Typeable
main = print $ typeOf "1"
はいけました
が、
import Data.Typeable
main = print $ typeOf 1

main = print $ typeOf (1,2,3)
などはダメですね

Haskell初日でしてghciのソースを読んでも訳がわからんです
検索キーワードを教えていただきありがとうございます