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

This commit is contained in:
Birunthan Mohanathas 2013-07-22 19:03:39 +03:00 committed by Daniel Micay
parent af5a17b7d0
commit d047cf1ec6
27 changed files with 102 additions and 111 deletions

View file

@ -686,7 +686,7 @@ mod test {
use std::io;
#[test] fn t1() {
let a = fresh_name("ghi");
io::println(fmt!("interned name: %u,\ntextual name: %s\n",
a,interner_get(a)));
printfln!("interned name: %u,\ntextual name: %s\n",
a, interner_get(a));
}
}