Just another update
This commit is contained in:
parent
a25938f123
commit
00a190b0a6
6591 changed files with 94363 additions and 23227 deletions
|
|
@ -1,3 +1,7 @@
|
|||
m = { 'def' => 1, 'abc' => 2 }
|
||||
for( kv in m ) io.writeln( kv );
|
||||
for( k in m.keys(); v in m.values() ) io.writeln( k, v )
|
||||
dict = { 'def' => 1, 'abc' => 2 }
|
||||
|
||||
for( keyvalue in dict ) io.writeln( keyvalue );
|
||||
for( key in dict.keys(); value in dict.values() ) io.writeln( key, value )
|
||||
dict.iterate { [key, value]
|
||||
io.writeln( key, value )
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue