Package org.jatha.dynatype

Examples of org.jatha.dynatype.LispReal


    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
View Full Code Here

TOP

Related Classes of org.jatha.dynatype.LispReal

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.