aboutsummaryrefslogtreecommitdiff
path: root/mingling_macros/src/func/r_eprint.rs
blob: f14dedf3db66228e7b63550c09a89a81944e5917 (plain) (blame)
1
2
3
4
5
6
7
8
// Doc Not Optimize
use proc_macro::TokenStream;

use crate::func::r_print::expand_print;

pub(crate) fn r_eprint(input: TokenStream) -> TokenStream {
    expand_print(input, "eprint")
}