6 lines
74 B
Rust
Raw Normal View History

#![crate_type = "lib"]
pub fn hello() {
println!("Hello, world!");
}