blob: 7d787e0c9871f4d760dca5403f17fa42da972932 [file] [log] [blame]
#![ crate_name = "krate2" ]
#![ crate_type = "lib" ]
use std::io::Write;
pub fn hello() {
std::io::stdout().write_all(b"hello world!\n");
}