// Primitive function to implement the COMMONLISP CONS // function. // // File: p_cons.cc // Author: {your name} <{your e-mail address}> // Assignment: 8 #include "lisp.h" // cons -- takes two arguments and returns a dotted- // pair whose car is the first and whose cdr // is the second // object * prim_cons (object * arglist) { return NIL; // Replace this. }