mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-06 12:18:33 +00:00
9 lines
100 B
Rust
9 lines
100 B
Rust
![]() |
extern crate bar;
|
||
|
|
||
|
use bar::{Bar, make_bar};
|
||
|
|
||
|
fn main() {
|
||
|
let b = make_bar(3);
|
||
|
b.print();
|
||
|
}
|