sap-shared 1.0.1

The shared crate for the SAP programming language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// Identical to the `print!` macro.
#[macro_export]
macro_rules! stdout {
    ($($arg:tt)*) => {
        print!($($arg)*)
    }
}

/// Identical to the `println!` macro.
#[macro_export]
macro_rules! stdoutln {
    ($($arg:tt)*) => {
        println!($($arg)*)
    }
}