Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

27
Task/Arrays/00-TASK.txt Normal file
View file

@ -0,0 +1,27 @@
This task is about arrays.
For hashes or associative arrays, please see [[Creating an Associative Array]].
For a definition and in-depth discussion of what an array is, see [[Array]].
;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]]
;Related tasks:
*   [[Collections]]
*   [[Creating an Associative Array]]
*   [[Two-dimensional array (runtime)]]
<br><br>