Introduction to Lists in Haskell

preview_player
Показать описание
Introduction to Programming in Haskell 5. This video introduces lists in Haskell: what a list is, how to make a list, and how to access elements of a list.
Рекомендации по теме
Комментарии
Автор

One thing that confuses me is how we treat 1:2:[]. This results in [1, 2]. However, considering how to form list of lists as in the case of splitOn implementation (if we make it from scratch) makes me confused.

kemaruproduction