Skip to content
Permalink
Tree: 7b2d977691
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time
16 lines (13 sloc) 311 Bytes
//! # Examples
//!
//! ## Hello World!
//!
//! ```rust
//! #![feature(proc_macro_hygiene)]
//! use interp::interp;
//! let who = "World";
//! assert_eq!(interp!("Hello { who }!").to_string(), "Hello World!");
//! ```
mod interpolator;
pub use interp_macros::interp;
pub use crate::interpolator::Interpolator;
You can’t perform that action at this time.