FullName returns a combination of FirstName LastName randomized, gender decides the gender of the name
(gender int)
| 144 | |
| 145 | // FullName returns a combination of FirstName LastName randomized, gender decides the gender of the name |
| 146 | func FullName(gender int) string { |
| 147 | return FirstName(gender) + " " + LastName() |
| 148 | } |
| 149 | |
| 150 | // Email returns a random email |
| 151 | func Email() string { |
searching dependent graphs…