auto merge of #7775 : poiru/rust/issue-7653, r=huonw

This closes #7653.
This commit is contained in:
bors 2013-07-13 08:55:34 -07:00
commit 48bfb90865

View file

@ -643,6 +643,18 @@ pub fn core_macros() -> @str {
$(if $pred $body)else+
);
)
macro_rules! print(
($( $arg:expr),+) => ( {
print(fmt!($($arg),+));
} )
)
macro_rules! println(
($( $arg:expr),+) => ( {
println(fmt!($($arg),+));
} )
)
}";
}