// Primitive function to implement the COMMONLISP CDR // function. // // File: p_cdr.cc // Author: {your name} <{your e-mail address}> // Assignment: 8 #include "lisp.h" // cdr -- takes a list and returns its tail // object * prim_cdr (object * arglist) { return NIL; // Replace this. }