15 Feb
2010
15 Feb
'10
6:17 a.m.
Quoting Jake Wheat <jakewheatmail@googlemail.com>:
On 14 February 2010 16:02, Henk-Jan van Tuyl <hjgtuyl@chello.nl> wrote:
Finally, it is the array subscript operator:
let x = arr ! 10
Shouldn't this be
let x = arr !! 10
(!) is for arrays, (!!) is for lists. ~d