美文网首页
thinking in haskell-类型

thinking in haskell-类型

作者: funcx | 来源:发表于2018-09-14 22:07 被阅读4次

    环境搭建和参考 https://learnyoua.haskell.sg/content/zh-cn/ch01/introduction.html
    每个表达式都有一个类型,ghci检查类型

    ghci> :t 'a'  
    'a' :: Char  
    ghci> :t True  
    True :: Bool  
    ghci> :t "HELLO!"  
    "HELLO!" :: [Char]  
    ghci> :t (True, 'a')  
    (True, 'a') :: (Bool, Char)  
    ghci> :t 4 == 5  
    4 == 5 :: Bool
    

    相关文章

      网友评论

          本文标题:thinking in haskell-类型

          本文链接:https://www.haomeiwen.com/subject/xawggftx.html