aboutsummaryrefslogtreecommitdiff
path: root/mingling_macros/src/func/r_eprint.rs
blob: 97023b086ef603398f7dfd6261195d58ffb01426 (plain) (blame)
1
2
3
4
5
6
7
use proc_macro::TokenStream;

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

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