Retrieving an Element of an Array: Difference between revisions

Content added Content deleted
No edit summary
(added objective c)
Line 307: Line 307:


There are quite a few others (too large to list here).
There are quite a few others (too large to list here).

=={{header|Objective-C}}==
NSArray *array;
//...
id element = [array objectAtIndex:index];


=={{header|OCaml}}==
=={{header|OCaml}}==