mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-17 11:16:17 +00:00
10 lines
145 B
Rust
10 lines
145 B
Rust
extern crate a_rlib;
|
|
extern crate a_dylib;
|
|
extern crate b_dylib;
|
|
|
|
fn main() {
|
|
a_rlib::hello();
|
|
a_dylib::hello();
|
|
b_dylib::hello();
|
|
}
|