1use std::env::args; 2 3fn main() { 4 let num = args().nth(1).unwrap(); 5 let formula = homo::roar(&num).unwrap(); 6 7 println!("{formula}"); 8}