v2 / vlib / v / tests / generic_calls / currency_to_code.v
9 lines · 8 sloc · 165 bytes · fb338d2a53cd0b9384c3584e78b957af8e745a98
Raw
1module main
2
3pub fn (currency Currency) to_code() string {
4 return match currency {
5 .afghani { 'AFN' }
6 .argentina_peso { 'ARS' }
7 .aruba_guilder { 'AWG' }
8 }
9}
10