Creating an Array: Difference between revisions

From Rosetta Code
Content added Content deleted
(Split off from multitask "Array" page.)
 
No edit summary
Line 7: Line 7:
'''Libraries:''' [[mArray Snippet]]
'''Libraries:''' [[mArray Snippet]]
alias creatmearray { .echo -a $array_create(MyArray, 5, 10) }
alias creatmearray { .echo -a $array_create(MyArray, 5, 10) }


{{array operation}}

Revision as of 16:25, 18 January 2007

Task
Creating 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 create an array.

mIRC

Interpeter: mIRC Script Editor Libraries: mArray Snippet

alias creatmearray { .echo -a $array_create(MyArray, 5, 10) }


Template:Array operation