Cons.java :  » Chat-Messenger » duvet » org » javaopen » lisp » Android Open Source

Android Open Source » Chat Messenger » duvet 
duvet » org » javaopen » lisp » Cons.java
package org.javaopen.lisp;

public class Cons {
  protected Sexp car = Nil.NIL;
  protected Sexp cdr = Nil.NIL;
  
  public Sexp car() { return car; }
  public Sexp cdr() { return cdr; }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.