mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-01 00:36:54 +00:00
8 lines
92 B
Rust
8 lines
92 B
Rust
extern crate dylib;
|
|
extern crate rlib;
|
|
|
|
fn main() {
|
|
dylib::dylib();
|
|
rlib::rlib();
|
|
}
|