June 2018 Update

This commit is contained in:
Ingy döt Net 2018-06-22 20:57:24 +00:00
parent ba8067c3b7
commit 22f33d4004
5278 changed files with 84726 additions and 14379 deletions

View file

@ -3,10 +3,10 @@ ac(list a, list b)
{
list o;
l_ucall(a, l_append, 1, o);
l_ucall(b, l_append, 1, o);
o.copy(a);
b.ucall(l_append, 1, o);
return o;
o;
}
integer
@ -14,12 +14,12 @@ main(void)
{
list a, b, c;
a = l_effect(1, 2, 3, 4);
b = l_effect(5, 6, 7, 8);
a = list(1, 2, 3, 4);
b = list(5, 6, 7, 8);
c = ac(a, b);
l_ucall(c, o_, 1, " ");
c.ucall(o_, 1, " ");
return 0;
}