When I try to initialize a String with the placeholder {}
using the following:
let range_from: u32 = 1;
let range_to: u32 = 101;
let insert_message = String::new("Please input Your guess in the range from {} to {}.", range_from, range_to);
println!("{}", insert_message);
// snip
println!("{}", insert_message);
It throws the following Error:
supplied 3 arguments | | | expected 1 argument