1
2
3
4
5
6
7
8
9
use uuid::Uuid;

pub fn print_uuid() {
    println!("{}", "privilege".to_uppercase());
    for _ in 1..2 {
        let my_uuid = Uuid::new_v4();
        println!("{}", my_uuid.to_string().to_uppercase());
    }
}