Retrieving an Element of an Array: Difference between revisions

From Rosetta Code
Content added Content deleted
No edit summary
Line 7: Line 7:
'''Library:''' [[mArray Snippet]]
'''Library:''' [[mArray Snippet]]
alias readmyarray { echo -a $array_read(MyArray, 2, 3) }
alias readmyarray { echo -a $array_read(MyArray, 2, 3) }


{{array operation}}

Revision as of 16:25, 18 January 2007

Task
Retrieving an Element of an Array
You are encouraged to solve this task according to the task description, using any language you may know.

In this task, the goal is to retrieve an element of an array.

mIRC

Interpeter: mIRC Script Editor Library: mArray Snippet

 alias readmyarray { echo -a $array_read(MyArray, 2, 3) }


Template:Array operation