Exercise: Constructors
Imagine that we have a class Bunny
with the following constructor declarations:
Bunny();
Bunny(float floppiness);
Say we have a class Dog
with the following constructor declarations:
Dog() = delete;
Dog(bool isGoodDoggo);
(When logged in, completion status appears here.)