runtime-fmt 0.4.1

Runtime-based string formatting
1
2
3
4
5
6
7
8
#[macro_use] extern crate runtime_fmt;

fn main() {
	let format_string = "Hello, {}!";
	rt_println!(format_string, "world").unwrap();
	rt_println!("bogus value {}").unwrap_err();
	rt_println!("bogus}{string").unwrap_err();
}