Print line separator

Rust

#![allow(unused)]
fn main() {
println!("{}", "-".repeat(80))
}

Python

print("-" * 80)