Ejemplo n.º 1
0
 public static object Cdar(object thing)
 {
     return((thing == null) ? null : CL.Cdr(CL.Car(thing)));
 }
Ejemplo n.º 2
0
 // CADDDR
 public static object Cadddr(Cons thing)
 {
     return((thing == null) ? null : CL.Car(CL.Cdr(CL.Cdr(thing.Cdr))));
 }