Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
1
Task/Collections/Aime/collections-1.aime
Normal file
1
Task/Collections/Aime/collections-1.aime
Normal file
|
|
@ -0,0 +1 @@
|
|||
list l;
|
||||
3
Task/Collections/Aime/collections-2.aime
Normal file
3
Task/Collections/Aime/collections-2.aime
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
l_p_integer(l, 0, 7);
|
||||
l_push(l, "a string");
|
||||
l_append(l, 2.5);
|
||||
4
Task/Collections/Aime/collections-3.aime
Normal file
4
Task/Collections/Aime/collections-3.aime
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
l_query(l, 2)
|
||||
l_head(l)
|
||||
l_q_text(l, 1)
|
||||
l[3]
|
||||
1
Task/Collections/Aime/collections-4.aime
Normal file
1
Task/Collections/Aime/collections-4.aime
Normal file
|
|
@ -0,0 +1 @@
|
|||
record r;
|
||||
3
Task/Collections/Aime/collections-5.aime
Normal file
3
Task/Collections/Aime/collections-5.aime
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
r_p_integer(r, "key1", 7);
|
||||
r_put(r, "key2", "a string");
|
||||
r["key3"] = .25;
|
||||
3
Task/Collections/Aime/collections-6.aime
Normal file
3
Task/Collections/Aime/collections-6.aime
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
r_query(r, "key1")
|
||||
r_tail(r)
|
||||
r["key2"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue