This repository has been archived on 2024-10-16. You can view files and clone it, but cannot push or open issues or pull requests.
pt/members/libpt-core/src/printing.rs
PlexSheep 10ec77aef0
All checks were successful
cargo devel CI / cargo CI (push) Successful in 4m59s
python interface for core and logging
2024-03-01 20:15:16 +01:00

11 lines
247 B
Rust

//! # tools that make printing stuff better
/// Quickly get a one line visual divider
pub fn divider() -> String {
format!("{:=^80}", "=")
}
/// Quickly print a one line visual divider
pub fn print_divider() {
println!("{:=^80}", "=")
}