mquote 0.1.0

Quasi-quoting library aimed on better readability and usability
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
extern crate mquote;

use mquote::mquote;

fn main() {
    let _ = mquote!(
        #{heh}
        #{requested_span}
        { #{inner_stream} }
        #{!!!}
    );
}