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