Array: Difference between revisions

From Rosetta Code
Content added Content deleted
No edit summary
Line 1: Line 1:
{{task}}
{{task}}


{{task}}

'''Criteria:''' In this task the job is to demonstrate how to create, write, read, and destroy an array.<Br>
==[[mIRC]]==
==[[mIRC]]==
'''Interpeter:''' mIRC Script Editor
'''Interpeter:''' mIRC Script Editor

Revision as of 01:18, 17 January 2007

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

Criteria: In this task the job is to demonstrate how to create, write, read, and destroy an array.

mIRC

Interpeter: mIRC Script Editor

REQUIRES: mArray Snippet by Haso Keric

 3 Dimensional Array
alias creatmearray { .echo -a $array_create(MyArray, 5, 10) } alias write2array { echo -a $array_write(MyArray, 2, 3, Rosetta) } alias readmyarray { echo -a $array_read(MyArray, 2, 3) } alias killmyarray { echo -a $array_destroy(MyArray) }