Enquire Now

Tags: range-notation

Range notation is a shorthand used in Haskell for specifying a list containing a sequence of integers. For example, [1..10] means the set of integers [1,2,3,4,5,6,7,8,9,10]

0 Questions