v2 / vlib / v / tests / generic_calls / faker_currency_code.v
5 lines · 4 sloc · 120 bytes · fb338d2a53cd0b9384c3584e78b957af8e745a98
Raw
1module main
2
3pub fn (mut this Faker) currency_code() string {
4 return this.random_element(Currency.cases()).to_code()
5}
6