Add tasks for all the new languages
This commit is contained in:
parent
9dc3c2bb62
commit
bba7bfd280
13208 changed files with 134745 additions and 0 deletions
|
|
@ -0,0 +1,21 @@
|
|||
shared void run() {
|
||||
|
||||
value myMap = map {
|
||||
"foo" -> 5,
|
||||
"bar" -> 10,
|
||||
"baz" -> 15
|
||||
};
|
||||
|
||||
for(key in myMap.keys) {
|
||||
print(key);
|
||||
}
|
||||
|
||||
for(item in myMap.items) {
|
||||
print(item);
|
||||
}
|
||||
|
||||
for(key->item in myMap) {
|
||||
print("``key`` maps to ``item``");
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue