test: Use println instead of debug in hello.rs

This commit is contained in:
Brian Anderson 2012-10-03 14:29:39 -07:00
parent c73e3320f8
commit 72b7a7707f
1 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
// -*- rust -*-
fn main() { debug!("hello, world."); }
fn main() {
io::println("hello, world");
}