datatype expr = constant of int
|pow of expr * int
| variable of string
| product of expr *expr ;
val x = variable("x");
fun integ(x,pow(y,a))= if (x=y) then pow(x,a+1) else product(x,pow(y,a));
integ(x,variable("y"),2);
给我输出产品(变量“x”,pow(变量#,2));我想要 y 而不是 # 那里?