Exercise: Simulating a Pizza Factory
Enhance your Kotlin proficiency by creating a companion object within a class for creating instances with specific characteristics.
We'll cover the following...
Problem statement
Define a companion
object in the Pizza
class that will contain factory functions for creating pizzas. The functions should be named hawaiian
and margherita
and ...