A Previous Edition
n
#include <cstring>
n
#include "Cons.h"
n
#include <iostream>
n
using namespace std;
n
n
Cons::Cons(Point* pi, Cons *tail)
n
{
n
p = pi;
n
}
n
n
Cons::Cons(int x, int y, Cons *t)
n
{
n
p = new Point(x, y);
n
tail = t;
n
};