0-based versus 1-based

Tom Pledger Tom.Pledger@peace.com
Fri, 28 Sep 2001 10:16:55 +1200


Just as a matter of idle curiosity, is there a particular reason for
tuples starting at element 1 (fst) whereas lists start at element 0?

    fst ('x', 'y') --> 'x'
    "xy" !! 1      --> 'y'