Initial data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 72d218235f
commit f23f22d71c
199087 changed files with 3378941 additions and 0 deletions

View file

@ -0,0 +1 @@
list l;

View file

@ -0,0 +1,3 @@
l_p_integer(l, 0, 7);
l_push(l, "a string");
l_append(l, 2.5);

View file

@ -0,0 +1,4 @@
l_query(l, 2)
l_head(l)
l_q_text(l, 1)
l[3]

View file

@ -0,0 +1 @@
record r;

View file

@ -0,0 +1,3 @@
r_p_integer(r, "key1", 7);
r_put(r, "key2", "a string");
r["key3"] = .25;

View file

@ -0,0 +1,3 @@
r_query(r, "key1")
r_tail(r)
r["key2"]