12 lines
190 B
Text
12 lines
190 B
Text
|
|
LOCAL arr := { 6 => 16, "eight" => 8, "eleven" => 11 }
|
||
|
|
LOCAL x
|
||
|
|
|
||
|
|
FOR EACH x IN arr
|
||
|
|
// key, value
|
||
|
|
? x:__enumKey(), x
|
||
|
|
// or key only
|
||
|
|
? x:__enumKey()
|
||
|
|
// or value only
|
||
|
|
? x
|
||
|
|
NEXT
|