046_optionals2.patch 216 B

12345678
  1. 24c24
  2. < tail: *Elephant = null, // Hmm... tail needs something...
  3. ---
  4. > tail: ?*Elephant = null, // <---- make this optional!
  5. 54c54
  6. < if (e.tail == null) ???;
  7. ---
  8. > if (e.tail == null) break;