rust/src/test/ui/hello_world/main.rs

8 lines
135 B
Rust
Raw Normal View History

// compile-pass
2016-05-11 19:28:52 +00:00
// Test that compiling hello world succeeds with no output of any kind.
fn main() {
println!("Hello, world!");
}