RosettaCodeData/Task/Arrays/00DESCRIPTION

27 lines
783 B
Text
Raw Permalink Normal View History

2015-02-20 00:35:01 -05:00
This task is about arrays.
2016-12-05 22:15:40 +01:00
2015-02-20 00:35:01 -05:00
For hashes or associative arrays, please see [[Creating an Associative Array]].
2016-12-05 22:15:40 +01:00
2015-02-20 00:35:01 -05:00
For a definition and in-depth discussion of what an array is, see [[Array]].
2013-04-09 00:46:50 -07:00
2016-12-05 22:15:40 +01:00
;Task:
Show basic array syntax in your language.
Basically, create an array, assign a value to it, and retrieve an element   (if available, show both fixed-length arrays and
dynamic arrays, pushing a value into it).
Please discuss at Village Pump:   {{vp|Arrays}}.
Please merge code in from these obsolete tasks:
:::*   [[Creating an Array]]
:::*   [[Assigning Values to an Array]]
:::*   [[Retrieving an Element of an Array]]
2013-04-09 00:46:50 -07:00
2016-12-05 22:15:40 +01:00
;Related tasks:
*   [[Collections]]
*   [[Creating an Associative Array]]
*   [[Two-dimensional array (runtime)]]
<br><br>