update meta data

This commit is contained in:
Ingy döt Net 2013-04-11 12:07:39 -07:00
parent f3a896c724
commit 90e15ed6ce
3307 changed files with 1674 additions and 7 deletions

13
Task/Arrays/00DESCRIPTION Normal file
View file

@ -0,0 +1,13 @@
This task is about arrays. For hashes or associative arrays, please
see [[Creating an Associative Array]].
In this task, the goal is to 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 obsolete tasks [[Creating an Array]], [[Assigning Values to an Array]], and [[Retrieving an Element of an Array]].
'''See also'''
* [[Collections]]
* [[Two-dimensional array (runtime)]]