pascalabcnet/TestSamples/Haskell_Samples/List4.hs
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

8 lines
132 B
Haskell

module Main where
func d (h:t) = h
main = do {
(print(func 1 [[4,2],[5],[8],[7]]));
(print 1);
}