| list l1 = 1,"hello",list(-1,1);
list l2 = list(1,5,7);
l1 + l2; // a new list
==> [1]:
==> 1
==> [2]:
==> hello
==> [3]:
==> [1]:
==> -1
==> [2]:
==> 1
==> [4]:
==> 1
==> [5]:
==> 5
==> [6]:
==> 7
l2 = delete(l2, 2); // delete 2nd entry
l2;
==> [1]:
==> 1
==> [2]:
==> 7
|