7 lines
177 B
Text
7 lines
177 B
Text
# Project Associative array/Creation
|
|
|
|
myarray = [["one",1],
|
|
["two",2],
|
|
["three",3]]
|
|
see find(myarray,"two",1) + nl
|
|
see find(myarray,2,2) + nl
|