v2 / vlib / v / tests / generic_calls / faker_country_name.v
5 lines · 4 sloc · 114 bytes · fb338d2a53cd0b9384c3584e78b957af8e745a98
Raw
1module main
2
3pub fn (mut this Faker) country_name() string {
4 return this.random_element(Country.cases()).str()
5}
6