mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-12 04:36:24 +00:00
9 lines
100 B
Rust
9 lines
100 B
Rust
extern crate bar;
|
|
|
|
use bar::{make_bar, Bar};
|
|
|
|
fn main() {
|
|
let b = make_bar(3);
|
|
b.print();
|
|
}
|