1
Fork 0

Change 'print(fmt!(...))' to printf!/printfln! in src/test/

This commit is contained in:
Birunthan Mohanathas 2013-07-22 19:04:51 +03:00 committed by Daniel Micay
parent d047cf1ec6
commit 206ae5752e
63 changed files with 98 additions and 102 deletions

View file

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