mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-22 03:44:24 +00:00
8 lines
92 B
Rust
8 lines
92 B
Rust
extern crate dylib;
|
|
extern crate rlib;
|
|
|
|
fn main() {
|
|
dylib::dylib();
|
|
rlib::rlib();
|
|
}
|