Contact: aviboots(AT)netvision.net.il
39,037 questions
50,751 answers
573 users
fn main() { let repeated = "*".repeat(10); // Repeats '*' 10 times println!("{}", repeated); } /* run: ********** */