1 2 3 4 5 6 7
use expression_formatter::format; #[test] fn test() { let value = format!("expressions: {1 + 2} and {3 + 4} wow!"); println!("{}", value); }