Im trying to make a function similar to this
pub const fn insert(num1:i32, num2:i32) -> &'static str {
formatcp!("n1:{}, n2:{}" , num1, num2)
}
But num1/num2 are not const. I think this would be possible as a macro but im not experienced in macros.