Crates.io | tablier |
lib.rs | tablier |
version | 0.1.3 |
source | src |
created_at | 2022-08-15 22:16:42.568075 |
updated_at | 2022-08-16 09:50:21.287208 |
description | A printing library |
homepage | https://github.com/traumatism/tablier |
repository | |
max_upload_size | |
id | 646214 |
size | 4,301 |
use panel::{Panel, PanelBox};
fn main() {
println!(
"{}",
Panel {
content: "hello world",
panel_box: PanelBox::ascii(),
}
.render()
);
println!(
"{}",
Panel {
content: "hello world\nmy name is victor\ni'm 16",
panel_box: PanelBox::ascii(),
}
.render()
);
}