Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
146 B
Rust
Raw Normal View History

2016-11-23 13:35:07 +13:00
#![ crate_name = "krate2" ]
#![ crate_type = "lib" ]
use std::io::Write;
pub fn hello() {
std::io::stdout().write_all(b"hello world!\n");
}