Examples of basic_null()


Examples of org.jatha.dynatype.LispValue.basic_null()

   */
  public void eval(String inputString)
  {
    f_parent.message(inputString + "\n", true);
    LispValue result = f_lisp.load(inputString, true);
    if (result.basic_null())
      f_parent.message(";; *** ERROR - unbalanced parentheses in input\n", false);
    else
    {
      f_parent.addHistoryItem(inputString);

View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.