LispInteger i3 = lisp.makeInteger(273);
LispValue l7 = lisp.makeCons(i3, lisp.makeList(i2, i1));
show("L7: ", l7);
LispReal r1 = lisp.makeReal();
LispReal r2 = lisp.makeReal(5.5);
LispReal r3 = lisp.makeReal(273.273273);
LispValue l8 = lisp.makeList(r3, r2, r1);
show("L8: ", l8);
// TEST Strings