I am new to Cl. I have to define +,-,* and / operators for strings. so, if the input is : setf ret (+ 1 2 3 "asd"), I want the output in ret to be "1+2+3+asd". Similarly, for other operators. I had no issues while redefining +, - and /. But redefining '*' is giving me headaches. ...