>>> const 42 "hello" 42
>>> map (const 42) [0..3] [42,42,42,42]
>>> bounds x $ constant 0 10 (0,10)
>>> origin $ constant 0 10 0
>>> bounds x (constantBounded :: Range Int8) (-128,127)
>>> origin (constantBounded :: Range Int8) 0
>>> bounds x $ constantFrom 0 (-10) 10 (-10,10)
>>> origin $ constantFrom 0 (-10) 10 0A range from 1970 to 2100, with the origin at 2000:
>>> bounds x $ constantFrom 2000 1970 2100 (1970,2100)
>>> origin $ constantFrom 2000 1970 2100 2000