Comments on previous program
Where does the method start come from?
- A thread begins executing when its start method is invoked
- start creates a separate thread and calls run
- Note that run was overridden in the Soda subclass
What does the output look like?