Array: Difference between revisions

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


'''mIRC'''
==[[mIRC]]==
'''Interpeter:''' mIRC Script Editor
'''Interpeter:''' mIRC Script Editor



Revision as of 02:45, 16 January 2007

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

mIRC

Interpeter: mIRC Script Editor

REQUIRES: mArray Snippet

 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) }