This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| object portfolio { | |
| /** | |
| * EXERCISE 1 | |
| * | |
| * Using only sealed traits and case classes, develop a model of a stock | |
| * exchange. Ensure there exist values for NASDAQ and NYSE. | |
| */ | |
| sealed trait Exchange | |
| object Exchange { |
OlderNewer