Append Lists In Haskell Code Example


Example 1: first element in list haskell

list = [1, 2, 3]  head :: [a] -> a head (x:_) = x  head list -- 1

Example 2: haskell append to list

1 : [2, 3] --return [1, 2, 3]

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?