squote 0.1.2

A clone of the quote crate that uses a String as its backing store
Documentation
1
2
3
4
5
6
7
use quote::quote_spanned;

fn main() {
    let span = "";
    let x = 0;
    quote_spanned!(span=> #x);
}