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