Banana Lord
Member
Just a quick question, given the map below, how would I go about retrieving the keys?
I want to do something along these lines:
Code:
string [string] tester;
tester ["test1"] = "True";
tester ["test2"] = "it's a wombat!";
tester ["test3"] = "42";
tester ["test4"] = "";
Code:
foreach test in $strings[??the_keys??]
print(test)
=>
'test1'
'test2'
'test3'
'test4'