# Joe themed username generator On a stream, Joe from Raise.dev [Github](https://github.com/joenash) showed a banner that said > cool cool cool awesome interesting cool Later on the discord, there were jokes about a username generator. So I made one. link to the crates stuff ## Usage ```rs use joe_username::joe_username; fn main() { // Prints a username println!("{}", joe_username::generate()); } ```