|
|||||||
Явное определение типов
Время создания: 20.06.2017 22:32
Раздел: Haskell - Типы
Запись: xintrea/mytetra_db_mcold/master/base/1497987169mbvvxce873/text.html на raw.githubusercontent.com
|
|||||||
|
|||||||
ghci> :t 'a' 'a' :: Char ghci> :t True True :: Bool ghci> :t "ПРИВЕТ!" "ПРИВЕТ!" :: [Char] ghci> :t (True, 'a') (True, 'a') :: (Bool, Char) ghci> :t 4 == 5 4 == 5 :: Bool removeNonUppercase :: [Char] –> [Char] removeNonUppercase st = [ c | c <– st, c `elem` ['А'..'Я']] addThree :: Int –> Int –> Int –> Int addThree x y z = x + y + z |
|||||||
Так же в этом разделе:
|
|||||||
|
|||||||
|