@def title = "Day 3"
- Check whether your solutions for last week's problems were type stable. One of the methods there cannot be type stable. Which is it?
- For the Peano numbers problem, in the following code, how many compilations for
+happen?
Zero() + Zero()
Zero() + convert(PeanoNumber, 1)
convert(PeanoNumber, 1) + Zero()
convert(PeanoNumber, 1) + convert(PeanoNumber, 5)
convert(PeanoNumber, 2) + convert(PeanoNumber, 5)