hightower-naming 0.1.4

Generate random names with epic adjectives and nouns
Documentation
1
2
3
4
5
6
7
use hightower_naming::generate_random_name;

fn main() {
    // No random suffix - just adjective-noun
    let name = generate_random_name(None);
    println!("No random suffix: {}", name);
}