Hello list,
I think I have found a small bug in List class:
public function isEmpty() : Bool {
return (h != null);
}
should be (as I guess):
public function isEmpty() : Bool {
return (h == null);
}
--
Best regards,
Michael mailto:pl at tepkom.ru