Update the compiler to not use printf/printfln

This commit is contained in:
Alex Crichton
2013-09-24 22:16:43 -07:00
parent 09a5338197
commit 409182de6d
80 changed files with 169 additions and 173 deletions

View File

@@ -12,5 +12,5 @@ struct Foo(int, int);
pub fn main() {
let x = Foo(1, 2);
printfln!(x);
println!("{:?}", x);
}