use strung::prelude::*;
strung::config::static_on_file!("[","]");
#[derive(Strung)]
struct Test {
text: &'static str,
num: u32
}
fn main(){
let test = Test {
text: "5k",
num: 5000
};
let text = test.strung_static("[text]=[num]");
println!("{}",&text);
}