#![allow(unused_variables)] #![allow(unused_must_use)] fn main() { format!("test"); format!("hello {}", "world!"); format!("x = {}, y = {val}", 10, val = 30); let (x, y) = (1, 2); format!("{x} + {y} = 3"); }