Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
generic_calls
/
faker_country_name.v
5
lines
·
4
sloc
·
114 bytes
·
fb338d2a53cd0b9384c3584e78b957af8e745a98
Raw
1
module
main
2
3
pub
fn
(
mut
this Faker) country_name() string {
4
return
this.random_element(Country.cases()).str()
5
}
6