| Crates.io | tablier |
| lib.rs | tablier |
| version | 0.1.3 |
| created_at | 2022-08-15 22:16:42.568075+00 |
| updated_at | 2022-08-16 09:50:21.287208+00 |
| 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()
);
}