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;
use std::net::Ipv4Addr;

fn main() {
    let ip = Ipv4Addr::LOCALHOST;
    let _ = quote! { #(#ip)* };
}