This file contains 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
enum Currency <EUR USD>; | |
multi rate(EUR) { 1.252 } | |
multi rate(USD) { 1.000 } | |
class Money { | |
has Real $.amount; | |
has Currency $.currency; | |
method convert_to(Currency $currency) { |