2016-08-17 07:20:04 -07:00
|
|
|
#![crate_type = "dylib"]
|
2016-01-24 22:46:39 +01:00
|
|
|
|
2016-08-17 07:20:04 -07:00
|
|
|
pub fn print(_args: std::fmt::Arguments) {}
|
|
|
|
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! myprint {
|
2018-12-16 20:23:27 +03:00
|
|
|
($($arg:tt)*) => ($crate::print(format_args!($($arg)*)));
|
2016-08-17 07:20:04 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! myprintln {
|
|
|
|
($fmt:expr) => (myprint!(concat!($fmt, "\n")));
|
2016-01-21 22:14:09 +01:00
|
|
|
}
|