Cell* addToFront(int x, Cell* L)
{
  return new Cell(x, L);
}