We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 403cdd8 + 948334f commit 48bfb90Copy full SHA for 48bfb90
src/libsyntax/ext/expand.rs
@@ -643,6 +643,18 @@ pub fn core_macros() -> @str {
643
$(if $pred $body)else+
644
);
645
)
646
+
647
+ macro_rules! print(
648
+ ($( $arg:expr),+) => ( {
649
+ print(fmt!($($arg),+));
650
+ } )
651
+ )
652
653
+ macro_rules! println(
654
655
+ println(fmt!($($arg),+));
656
657
658
}";
659
}
660
0 commit comments