1 2 3 4 5 6 7 8 9
extern crate default_dylib; extern crate hashed_dylib; extern crate hashed_rlib; fn main() { hashed_rlib::hrhello(); hashed_dylib::hdhello(); default_dylib::ddhello(); }