auto merge of #7775 : poiru/rust/issue-7653, r=huonw
This closes #7653.
This commit is contained in:
commit
48bfb90865
1 changed files with 12 additions and 0 deletions
|
@ -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),+));
|
||||
} )
|
||||
)
|
||||
}";
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue